結果
| 問題 |
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 |
ソースコード
# 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)
gew1fw