結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,288 KB
testcase_01 AC 92 ms
12,544 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 95 ms
12,416 KB
testcase_04 AC 94 ms
12,160 KB
testcase_05 AC 85 ms
12,032 KB
testcase_06 AC 100 ms
12,288 KB
testcase_07 AC 100 ms
12,416 KB
testcase_08 AC 99 ms
12,416 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 83 ms
12,160 KB
testcase_11 AC 95 ms
12,416 KB
testcase_12 AC 86 ms
12,032 KB
testcase_13 AC 97 ms
12,416 KB
testcase_14 AC 87 ms
12,288 KB
testcase_15 AC 87 ms
12,288 KB
testcase_16 AC 105 ms
12,544 KB
testcase_17 AC 95 ms
12,416 KB
testcase_18 AC 89 ms
12,288 KB
testcase_19 AC 98 ms
12,288 KB
testcase_20 AC 91 ms
12,416 KB
testcase_21 AC 81 ms
12,288 KB
testcase_22 AC 97 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