結果
| 問題 |
No.525 二度寝の季節
|
| コンテスト | |
| ユーザー |
akasatananana
|
| 提出日時 | 2019-09-18 20:36:34 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 227 bytes |
| コンパイル時間 | 91 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-07-16 01:55:40 |
| 合計ジャッジ時間 | 2,354 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 WA * 13 |
ソースコード
a,b=[int(i) for i in input().split(":")]
c=b+5
if c>=60:
a+=1
d=a%24
e=c%60
if (d<10) and (e<10):
print("0"+str(d)+":0"+str(e))
elif (d<10):
print("0"+str(d)+":"+str(e))
elif (e<10):
print(str(d)+":0"+str(e))
akasatananana