結果
| 問題 |
No.3058 Deque and Brackets
|
| コンテスト | |
| ユーザー |
qwewe
|
| 提出日時 | 2025-05-14 13:02:36 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 323 bytes |
| コンパイル時間 | 407 ms |
| コンパイル使用メモリ | 82,592 KB |
| 実行使用メモリ | 65,448 KB |
| 最終ジャッジ日時 | 2025-05-14 13:04:13 |
| 合計ジャッジ時間 | 3,655 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 22 |
ソースコード
import sys
def solve():
# Read the input line and split it into two parts
line = sys.stdin.readline().split()
# Convert the parts to integers
M = int(line[0])
D = int(line[1])
# Calculate the sum
result = M + D
# Print the result
print(result)
if __name__ == "__main__":
solve()
qwewe