結果

問題 No.1236 長針と短針
ユーザー hir355hir355
提出日時 2020-09-25 21:35:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 55,392 KB
最終ジャッジ日時 2024-06-28 06:11:50
合計ジャッジ時間 2,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,680 KB
testcase_01 AC 42 ms
55,392 KB
testcase_02 AC 42 ms
54,280 KB
testcase_03 AC 42 ms
55,024 KB
testcase_04 AC 42 ms
53,888 KB
testcase_05 AC 42 ms
53,996 KB
testcase_06 AC 43 ms
54,912 KB
testcase_07 AC 41 ms
54,120 KB
testcase_08 AC 42 ms
54,112 KB
testcase_09 AC 43 ms
54,544 KB
testcase_10 AC 43 ms
55,136 KB
testcase_11 AC 42 ms
53,792 KB
testcase_12 AC 43 ms
54,440 KB
testcase_13 AC 42 ms
54,344 KB
testcase_14 AC 42 ms
53,948 KB
testcase_15 AC 42 ms
54,872 KB
testcase_16 AC 42 ms
53,876 KB
testcase_17 AC 42 ms
54,428 KB
testcase_18 AC 41 ms
54,608 KB
testcase_19 AC 42 ms
53,700 KB
testcase_20 AC 42 ms
55,176 KB
testcase_21 AC 41 ms
53,672 KB
testcase_22 AC 41 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime
a, b = map(int, input().split())
a %= 12
t = a * 3600 + b * 60
ans = 1000000
for i in range(12):
    ans = min(ans, (i * 3600 + i * 3600 // 11 - t) % 86400)
print(ans)
0