結果
| 問題 | No.525 二度寝の季節 |
| コンテスト | |
| ユーザー |
310icecrystal
|
| 提出日時 | 2023-07-06 05:11:27 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 99 bytes |
| 記録 | |
| コンパイル時間 | 224 ms |
| コンパイル使用メモリ | 95,336 KB |
| 実行使用メモリ | 79,192 KB |
| 最終ジャッジ日時 | 2026-08-19 05:09:31 |
| 合計ジャッジ時間 | 4,228 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | AC * 13 WA * 20 |
ソースコード
A,B = map(int,input().split(":"))
B += 5
if B >= 60:
A += 1
B -= 60
print(str(A) + ":" + str(B))
310icecrystal