結果

問題 No.2749 随伴関手入門
ユーザー KeiKei
提出日時 2024-05-10 22:16:48
言語 Julia
(1.10.2)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 252,988 KB
最終ジャッジ日時 2024-05-10 22:17:04
合計ジャッジ時間 10,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
247,168 KB
testcase_01 AC 301 ms
247,948 KB
testcase_02 AC 329 ms
252,400 KB
testcase_03 AC 301 ms
248,160 KB
testcase_04 AC 303 ms
247,952 KB
testcase_05 AC 309 ms
247,020 KB
testcase_06 AC 333 ms
248,584 KB
testcase_07 AC 301 ms
247,988 KB
testcase_08 AC 304 ms
247,432 KB
testcase_09 AC 304 ms
247,680 KB
testcase_10 AC 322 ms
248,220 KB
testcase_11 AC 308 ms
247,988 KB
testcase_12 AC 298 ms
252,300 KB
testcase_13 AC 307 ms
247,768 KB
testcase_14 AC 364 ms
248,168 KB
testcase_15 AC 307 ms
247,976 KB
testcase_16 AC 299 ms
248,252 KB
testcase_17 AC 312 ms
252,208 KB
testcase_18 AC 334 ms
248,156 KB
testcase_19 AC 311 ms
252,988 KB
testcase_20 AC 306 ms
247,672 KB
testcase_21 AC 297 ms
247,384 KB
testcase_22 AC 331 ms
247,812 KB
testcase_23 AC 307 ms
247,444 KB
testcase_24 AC 305 ms
248,308 KB
testcase_25 AC 305 ms
252,188 KB
testcase_26 AC 334 ms
247,320 KB
testcase_27 WA -
testcase_28 AC 302 ms
247,460 KB
testcase_29 AC 319 ms
248,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main()
  N = parse(Int, readline())
  L = [BigInt(1), 1]
  for i in 3:400
    push!(L, L[i - 2] + L[i - 1])
  end
  ans = -1
  for i in 1:400
    if L[i] % N == 0
      ans = i
      break
    end
  end
  println(ans)
end
main()
0