結果

問題 No.3062 Rotate and Maximize
ユーザー gew1fw
提出日時 2025-06-12 14:25:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 236 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 67,348 KB
最終ジャッジ日時 2025-06-12 14:26:03
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

# Read the input line
line = input().strip()

# Split the line into two parts
a_str, b_str = line.split()

# Convert to integers
a = int(a_str)
b = int(b_str)

# Calculate the sum
sum_result = a + b

# Print the result
print(sum_result)
0