結果
問題 | No.525 二度寝の季節 |
ユーザー |
![]() |
提出日時 | 2020-03-30 17:11:27 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 1,000 ms |
コード長 | 202 bytes |
コンパイル時間 | 469 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-13 03:30:19 |
合計ジャッジ時間 | 2,919 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() h,m=map(int,input().split(":")) if m+5>=60: h+=1 m=(m+5)%60 else: m+=5 if h==24: h=0 hh=str(h).zfill(2) mm=str(m).zfill(2) print(hh+":"+mm)