結果

問題 No.1236 長針と短針
ユーザー tanon710
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

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