結果

問題 No.303 割れません
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-18 09:36:52
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 234 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-07-05 05:46:13
合計ジャッジ時間 33,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,160 KB
testcase_01 AC 83 ms
11,904 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 1,077 ms
13,696 KB
testcase_04 AC 3,417 ms
15,488 KB
testcase_05 AC 3,393 ms
15,360 KB
testcase_06 AC 3,360 ms
15,488 KB
testcase_07 AC 3,351 ms
16,512 KB
testcase_08 AC 3,527 ms
17,280 KB
testcase_09 AC 3,486 ms
16,768 KB
testcase_10 WA -
testcase_11 AC 3,409 ms
15,360 KB
testcase_12 AC 3,567 ms
17,408 KB
testcase_13 AC 1,753 ms
14,464 KB
testcase_14 AC 750 ms
14,080 KB
testcase_15 AC 450 ms
12,800 KB
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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) ? [q, :INF] : [L, (L % 2 == 0) ? (2 * p * q) : q]
0