結果

問題 No.1236 長針と短針
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-26 18:27:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 61,212 KB
最終ジャッジ日時 2024-06-29 13:03:49
合計ジャッジ時間 1,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,288 KB
testcase_01 AC 38 ms
60,640 KB
testcase_02 AC 31 ms
52,448 KB
testcase_03 AC 37 ms
59,652 KB
testcase_04 AC 38 ms
53,808 KB
testcase_05 AC 34 ms
53,212 KB
testcase_06 AC 39 ms
61,032 KB
testcase_07 WA -
testcase_08 AC 38 ms
61,212 KB
testcase_09 AC 34 ms
52,500 KB
testcase_10 AC 36 ms
52,596 KB
testcase_11 AC 41 ms
59,292 KB
testcase_12 AC 34 ms
53,192 KB
testcase_13 AC 40 ms
60,180 KB
testcase_14 AC 34 ms
53,888 KB
testcase_15 AC 34 ms
52,896 KB
testcase_16 AC 39 ms
60,196 KB
testcase_17 AC 38 ms
59,564 KB
testcase_18 AC 34 ms
52,956 KB
testcase_19 AC 37 ms
59,692 KB
testcase_20 AC 36 ms
60,208 KB
testcase_21 AC 34 ms
52,216 KB
testcase_22 AC 39 ms
60,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def MI():
    return map(int, input().split())
import math
a,b=MI()
if a==12: a=0

for sec in range(1, 3600*12):
    angle_a=2*math.pi*(a+b/60+sec/3600)/12
    angle_b=2*math.pi*(b+sec/60)/60
    #print(angle_a,angle_b)
    if angle_a>2*math.pi:angle_a-=2*math.pi
    if angle_b>2*math.pi:angle_b-=2*math.pi
    if 0<angle_b-angle_a<5*10**(-3):
        print(sec-1)
        break
0