結果

問題 No.303 割れません
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-18 09:37:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,228 ms / 10,000 ms
コード長 234 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-07-05 05:48:51
合計ジャッジ時間 28,962 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 71 ms
12,160 KB
testcase_02 AC 70 ms
12,160 KB
testcase_03 AC 924 ms
13,824 KB
testcase_04 AC 2,950 ms
15,744 KB
testcase_05 AC 2,974 ms
15,488 KB
testcase_06 AC 2,910 ms
15,616 KB
testcase_07 AC 2,901 ms
16,640 KB
testcase_08 AC 3,058 ms
17,152 KB
testcase_09 AC 3,020 ms
16,512 KB
testcase_10 AC 74 ms
12,160 KB
testcase_11 AC 3,228 ms
15,488 KB
testcase_12 AC 3,092 ms
17,024 KB
testcase_13 AC 1,493 ms
14,592 KB
testcase_14 AC 649 ms
13,824 KB
testcase_15 AC 384 ms
12,800 KB
testcase_16 AC 71 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

L = gets.to_i
p, q = 1, 0
l = (L % 2 == 0) ? (L / 2) : L
21.downto(0) { |h|
  p, q = p * p + q * q, 2 * p * q + q * q
  if ((l >> h) & 1) != 0 then p, q = q, p + q end
}
puts (L == 2) ? [3, :INF] : [L, (L % 2 == 0) ? (2 * p * q) : q]
0