結果
| 問題 |
No.525 二度寝の季節
|
| コンテスト | |
| ユーザー |
matutaqnitakumi
|
| 提出日時 | 2017-07-02 15:47:56 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 1,000 ms |
| コード長 | 187 bytes |
| コンパイル時間 | 103 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-10-05 08:30:31 |
| 合計ジャッジ時間 | 1,874 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 33 |
ソースコード
x=input()
h=int(x[:2])
a=int(x[-2:])+5
#print(h,a)
if 60<=int(a):
a=int(a)-60
h=int(h)+1
#"{0:02d}".format
if 24<=int(h):
h=h-24
print("{0:02d}".format(h)+":"+"{0:02d}".format(a))
matutaqnitakumi