結果

問題 No.1236 長針と短針
ユーザー miya145592miya145592
提出日時 2023-05-15 02:28:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,008 KB
最終ジャッジ日時 2024-05-07 17:20:33
合計ジャッジ時間 5,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
88,800 KB
testcase_01 AC 220 ms
89,728 KB
testcase_02 AC 122 ms
88,576 KB
testcase_03 AC 199 ms
90,624 KB
testcase_04 AC 151 ms
89,728 KB
testcase_05 AC 121 ms
88,576 KB
testcase_06 AC 191 ms
89,856 KB
testcase_07 AC 208 ms
90,624 KB
testcase_08 AC 198 ms
90,332 KB
testcase_09 AC 148 ms
89,324 KB
testcase_10 AC 126 ms
88,488 KB
testcase_11 AC 197 ms
90,496 KB
testcase_12 AC 128 ms
88,320 KB
testcase_13 AC 186 ms
90,496 KB
testcase_14 AC 130 ms
88,704 KB
testcase_15 AC 130 ms
88,832 KB
testcase_16 AC 192 ms
90,496 KB
testcase_17 AC 187 ms
89,908 KB
testcase_18 AC 156 ms
89,344 KB
testcase_19 AC 201 ms
90,496 KB
testcase_20 AC 163 ms
89,472 KB
testcase_21 AC 120 ms
88,448 KB
testcase_22 AC 201 ms
91,008 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