結果
| 問題 |
No.651 E869120 and Driving
|
| コンテスト | |
| ユーザー |
Haruki0804S
|
| 提出日時 | 2018-10-22 12:48:55 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 1,000 ms |
| コード長 | 175 bytes |
| コンパイル時間 | 79 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-22 09:05:21 |
| 合計ジャッジ時間 | 876 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
a=int(input())
h=int (a / 100)
m=a-(h*100)
m=int(m*60 / 100)
print(h+10,end='')
print(':',end='')
if(m<10):
print('0',end='')
print(m)
else:
print(m)
Haruki0804S