結果

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

ソースコード

diff #

# قراءة الإدخال
A, B = map(int, input().split())

# حساب المجموع
result = A + B

# طباعة النتيجة
print(result)
0