加载中...

在线判题系统使用指南

详细了解如何在本系统中提交代码,避免常见错误,提高解题效率

重要提示

提交代码前请仔细阅读本指南,避免因格式问题导致判题失败。

Python 提交规范

Python 是解释型语言,直接提交源代码,不需要编译。

输入输出规范

Python
# 读取单个整数
n = int(input())

# 读取一行多个整数(如输入"1 2 3")
nums = list(map(int, input().split()))

# 读取多行输入
n = int(input())
for _ in range(n):
    data = input().split()
    # 处理数据

# 输出
print("结果:", ans)

常见错误

错误类型 原因 解决方案
ValueError 尝试用int()转换包含空格的字符串 使用split()分割输入
Time Limit Exceeded 算法效率低或死循环 优化算法复杂度
IndentationError 缩进不正确 检查所有代码块的缩进

示例代码

示例
# A+B Problem 示例
a, b = map(int, input().split())
print(a + b)