結果
| 問題 |
No.525 二度寝の季節
|
| コンテスト | |
| ユーザー |
Ohnuma
|
| 提出日時 | 2020-04-09 22:52:42 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 115 bytes |
| コンパイル時間 | 133 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-14 00:29:16 |
| 合計ジャッジ時間 | 2,472 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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