結果

問題 No.3062 Rotate and Maximize
ユーザー gew1fw
提出日時 2025-06-12 19:39:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 236 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 67,412 KB
最終ジャッジ日時 2025-06-12 19:40:07
合計ジャッジ時間 4,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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