結果
問題 | No.651 E869120 and Driving |
ユーザー | takey |
提出日時 | 2018-02-28 15:12:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 579 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-01 05:33:49 |
合計ジャッジ時間 | 1,093 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
#-*- coding:utf-8 -*- if __name__ == "__main__": # 時速100km = 分速(100/60)km v = 100/60 now_h = 10 now_m = 0 a = int(input()) # 着くのに何時間何分かかるの? ellapsed_h = 0 ellapsed_m = a/v # 経過分 while 1: if ellapsed_m >= 60: ellapsed_m -= 60 ellapsed_h += 1 continue break # 結局何時に着くの? arrived_h = now_h + ellapsed_h arrived_m = now_m + ellapsed_m while 1: if arrived_h >= 24: arrived_h -= 24 continue break print("{0:02d}:{1:02d}".format(arrived_h, arrived_m))