結果
| 問題 | No.525 二度寝の季節 |
| コンテスト | |
| ユーザー |
Ohnuma
|
| 提出日時 | 2020-04-09 22:52:42 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 115 bytes |
| 記録 | |
| コンパイル時間 | 606 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 20,700 KB |
| 最終ジャッジ日時 | 2026-04-04 09:02:57 |
| 合計ジャッジ時間 | 9,607 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 33 |
ソースコード
a,b = input().split(':')
b += 5
if b<60:
print('{}:{}'.format(a, b))
else:
print('{}:{}'.format(a+1, b-60))
Ohnuma