結果

問題 No.1236 長針と短針
ユーザー tanon710
提出日時 2020-09-25 23:53:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-06-28 08:24:34
合計ジャッジ時間 2,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 WA * 11
権限があれば一括ダウンロードができます

ソースコード

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.5))
0