在 Python 中提交谜题时出现运行时错误(退出状态 1)

发布于 2024-12-06 10:28:52 字数 382 浏览 1 评论 0原文

我的 Windows 计算机上安装了 python 2.7。我正在尝试通过电子邮件将谜题答案发送给运行 Python 2.6.6 的 Spotify。当我提交 *.py 源代码时,出现以下错误:

运行时错误

已退出,退出状态:1

我只有“import sys”。我已经运行了大量的压力测试 - 可能的输入是 1 ≤ m ≤ 10 000 行,我已经测试了超过 100 万个值,零问题。我尝试过使用 print & 进行打印sys.stdout.write。

当我发送虚拟测试代码时(我运行完整的算法,但只打印垃圾而不是我的答案 - 即打印“测试!”),我得到了预期的“错误答案”。

我不知道从哪里开始调试 - 有任何提示/帮助吗?

谢谢! -萨姆

I have python 2.7 installed on my windows computer. I'm trying to email a puzzle answer to Spotify, which is running Python 2.6.6. When I submit my *.py source code, I'm getting the following error:

Run Time Error

Exited, exit status: 1

I only have "import sys". I've run tons of stress tests - possible inputs are 1 ≤ m ≤ 10 000 lines, I've tested with 1 million+ values with zero problems. I've tried printing with print & sys.stdout.write.

When I send in dummie test code (I run my full algorithm but only print garbage instead of my answer - ie, print "test!"), I get the expected "Wrong Answer" back.

I have no idea where to start debugging - any tips/help at all?

Thanks!
-Sam

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞琼窗梦回ˉ 2024-12-13 10:28:52

我遇到了同样的错误。正如我所见,这不是 python 输出,而只是 Spotify 机器人的一个答案,即您的程序在某些测试中引发了异常。也许未显示真实输出以防止使用机器人进行调试。

当您打印虚拟数据时,第一次测试失败,您会得到“错误答案”。

当您打印真实输出时,第一个测试可能会通过,但接下来会抛出异常,并且您会收到“运行时错误”。

我修复了脚本中可能存在异常的一个缺陷,并且运行时错误消失了。

I got the same error. As I see it's not python output but just an answer from spotify bot that your program threw an exception in some tests. Maybe the real output isn't shown to prevent debugging using the bot.

When you print dummy data fist test fails and you get 'Wrong Answer'.

When you print real output first test may pass but next throw an exception and you get 'Run Time Error'.

I fixed one defect with possible exception in my script and Run Time Error went away.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文