結果

問題 No.1236 長針と短針
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-09-25 21:33:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 58,600 KB
最終ジャッジ日時 2024-06-28 06:10:53
合計ジャッジ時間 2,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,936 KB
testcase_01 AC 42 ms
58,388 KB
testcase_02 AC 38 ms
52,468 KB
testcase_03 AC 42 ms
57,860 KB
testcase_04 AC 39 ms
52,916 KB
testcase_05 AC 38 ms
52,612 KB
testcase_06 AC 41 ms
57,740 KB
testcase_07 AC 41 ms
58,556 KB
testcase_08 AC 41 ms
58,056 KB
testcase_09 AC 39 ms
52,500 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 42 ms
58,360 KB
testcase_12 AC 39 ms
52,972 KB
testcase_13 AC 41 ms
58,600 KB
testcase_14 AC 38 ms
52,760 KB
testcase_15 AC 38 ms
53,076 KB
testcase_16 AC 42 ms
58,172 KB
testcase_17 AC 41 ms
57,672 KB
testcase_18 AC 39 ms
54,508 KB
testcase_19 AC 42 ms
58,112 KB
testcase_20 AC 42 ms
58,112 KB
testcase_21 AC 39 ms
52,340 KB
testcase_22 AC 42 ms
57,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

12時間で1周→12*3600度で1周とする 1秒で1度
3600秒で1周→1秒で12度

"""

A,B = map(int,input().split())
lp = 12*3600

C = 0

X = ( A*3600+B*60+C ) % lp
Y = ( (B*60+C) * 12 ) % lp
#print (X,Y)
if Y > X:
    X += lp

for i in range(3600*24*10):

    if Y == X:
        print (i)
        break
    elif Y > X:
        print (i-1)
        break

    X += 1
    Y += 12
0