結果
| 問題 |
No.651 E869120 and Driving
|
| コンテスト | |
| ユーザー |
T1610
|
| 提出日時 | 2018-03-03 00:34:45 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 1,000 ms |
| コード長 | 205 bytes |
| コンパイル時間 | 121 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-22 08:56:51 |
| 合計ジャッジ時間 | 902 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
def toStrDig(n, dig) :
s = str(n)
if len(s) < dig :
s = ('0' * (dig - len(s))) + s
return s
a = int(input())
x = a//100
y = int((a%100)/100 * 60)
print(str(x+10)+":"+toStrDig(y, 2))
T1610