結果

問題 No.1236 長針と短針
ユーザー tanon710tanon710
提出日時 2020-09-25 23:54:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 53,284 KB
最終ジャッジ日時 2024-06-28 08:24:44
合計ジャッジ時間 1,917 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,004 KB
testcase_01 AC 38 ms
51,956 KB
testcase_02 AC 40 ms
52,484 KB
testcase_03 AC 40 ms
53,284 KB
testcase_04 AC 39 ms
51,952 KB
testcase_05 AC 38 ms
52,936 KB
testcase_06 AC 38 ms
52,688 KB
testcase_07 AC 38 ms
52,560 KB
testcase_08 AC 39 ms
52,024 KB
testcase_09 AC 43 ms
52,060 KB
testcase_10 AC 39 ms
51,748 KB
testcase_11 AC 38 ms
53,224 KB
testcase_12 AC 38 ms
51,808 KB
testcase_13 AC 39 ms
52,084 KB
testcase_14 AC 38 ms
52,560 KB
testcase_15 AC 39 ms
52,832 KB
testcase_16 AC 39 ms
52,948 KB
testcase_17 AC 38 ms
52,396 KB
testcase_18 AC 39 ms
52,332 KB
testcase_19 AC 38 ms
52,572 KB
testcase_20 AC 37 ms
51,956 KB
testcase_21 AC 38 ms
52,140 KB
testcase_22 AC 38 ms
52,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
a%=12
deg_a=30*(a+b/60)
deg_b=(6*b)%360
speed=11/120
time=((360+deg_a-deg_b)%360)/speed
print(int(time+0.01))
0