結果

問題 No.651 E869120 and Driving
ユーザー rainrain
提出日時 2018-03-05 22:03:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 10,600 KB
実行使用メモリ 8,072 KB
最終ジャッジ日時 2023-10-11 20:33:05
合計ジャッジ時間 1,636 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
8,028 KB
testcase_01 AC 16 ms
8,052 KB
testcase_02 AC 15 ms
7,964 KB
testcase_03 AC 16 ms
7,884 KB
testcase_04 WA -
testcase_05 AC 16 ms
8,072 KB
testcase_06 AC 16 ms
8,064 KB
testcase_07 AC 16 ms
7,992 KB
testcase_08 AC 15 ms
7,860 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

a=int(input())
b=a/100
c=math.floor(b)
d=int((b-c)*60)

if(d<10):
    print(str(10+c)+':0'+str(d))
else:
    print(str(10+c)+':'+str(d))
0