結果

問題 No.1236 長針と短針
ユーザー miya145592miya145592
提出日時 2023-05-15 02:28:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-11-30 12:00:35
合計ジャッジ時間 5,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
88,320 KB
testcase_01 AC 224 ms
89,600 KB
testcase_02 AC 136 ms
88,064 KB
testcase_03 AC 214 ms
90,240 KB
testcase_04 AC 164 ms
89,088 KB
testcase_05 AC 136 ms
88,064 KB
testcase_06 AC 206 ms
89,856 KB
testcase_07 AC 216 ms
90,368 KB
testcase_08 AC 195 ms
89,728 KB
testcase_09 AC 159 ms
88,960 KB
testcase_10 AC 136 ms
87,936 KB
testcase_11 AC 216 ms
90,496 KB
testcase_12 AC 140 ms
88,448 KB
testcase_13 AC 201 ms
90,752 KB
testcase_14 AC 137 ms
88,064 KB
testcase_15 AC 137 ms
88,832 KB
testcase_16 AC 200 ms
90,240 KB
testcase_17 AC 196 ms
89,856 KB
testcase_18 AC 173 ms
89,216 KB
testcase_19 AC 212 ms
90,496 KB
testcase_20 AC 179 ms
89,472 KB
testcase_21 AC 136 ms
88,320 KB
testcase_22 AC 209 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
A, B = map(int, input().split())
h = Fraction((A*60*60+B*60)%(12*60*60), 12*60*60)
m = Fraction(B*60, 60*60)
if m<=h:
    flag = True
else:
    flag = False
for i in range(120*60):
    if flag and h==m:
        print(i)
        exit()
    elif flag and h<m:
        print(i-1)
        exit()
    elif m<=h:
        flag = True
    h += Fraction(1, 12*60*60)
    if h>=1:
        h-=1
    m += Fraction(1, 60*60)
    if m>=1:
        m-=1
0