結果

問題 No.1236 長針と短針
コンテスト
ユーザー Mine
提出日時 2020-10-06 09:40:22
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 248 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 407 ms
コンパイル使用メモリ 20,952 KB
実行使用メモリ 35,928 KB
最終ジャッジ日時 2026-04-02 19:08:02
合計ジャッジ時間 9,354 ms
ジャッジサーバーID
(参考情報)
judge4_1 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import math
a, b = map(int, input().split())
if a == 12 and b == 0:
    print(0)
    exit()

if a > 12:
    a -= 12
s = (a/12 + b/60/12)
l = b/60
speed = 1/3600 - 1/3600/12

if l > s:
    r = 1 - (l-s)
else:
    r = s-l

print(math.floor(r/speed))
0