結果

問題 No.1236 長針と短針
ユーザー simansiman
提出日時 2021-08-18 04:36:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-19 12:17:16
合計ジャッジ時間 2,777 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 78 ms
12,032 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 81 ms
12,288 KB
testcase_05 AC 77 ms
12,032 KB
testcase_06 AC 93 ms
12,416 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 93 ms
12,288 KB
testcase_09 AC 83 ms
12,160 KB
testcase_10 AC 75 ms
12,032 KB
testcase_11 AC 85 ms
12,416 KB
testcase_12 AC 76 ms
12,032 KB
testcase_13 AC 84 ms
12,416 KB
testcase_14 AC 76 ms
12,160 KB
testcase_15 AC 80 ms
12,032 KB
testcase_16 AC 96 ms
12,288 KB
testcase_17 AC 81 ms
12,288 KB
testcase_18 AC 78 ms
12,288 KB
testcase_19 AC 90 ms
12,288 KB
testcase_20 AC 79 ms
12,032 KB
testcase_21 AC 76 ms
12,160 KB
testcase_22 AC 92 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

A, B = gets.split.map(&:to_i)
T = 60 * 60 * 24

def f(t)
  t * Rational(360, 60 * 60)
end

def g(t)
  t * Rational(360, 60 * 60 * 12)
end

def t1(m, s)
  (m * 60 + s) % 3600
end

def t2(h, m, s)
  ((h * 60 * 60) + m * 60 + s) % (60 * 60 * 12)
end

0.upto(7200) do |i|
  a = f(t1(B, i))
  b = g(t2(A, B, i))
  c = f(t1(B, i + 1))
  d = g(t2(A, B, i))

  if a <= b && c >= d
    puts i
    exit
  end
end
0