結果

問題 No.2749 随伴関手入門
ユーザー KeiKei
提出日時 2024-05-10 22:07:07
言語 Julia
(2.11.2)
結果
TLE  
実行時間 -
コード長 248 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 468,692 KB
最終ジャッジ日時 2024-12-20 05:47:18
合計ジャッジ時間 17,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 933 ms
247,172 KB
testcase_02 AC 302 ms
247,508 KB
testcase_03 AC 301 ms
248,804 KB
testcase_04 AC 301 ms
247,256 KB
testcase_05 AC 304 ms
248,224 KB
testcase_06 AC 303 ms
248,064 KB
testcase_07 AC 300 ms
247,984 KB
testcase_08 AC 305 ms
247,788 KB
testcase_09 AC 304 ms
247,320 KB
testcase_10 AC 303 ms
248,036 KB
testcase_11 AC 305 ms
252,060 KB
testcase_12 AC 304 ms
247,328 KB
testcase_13 AC 303 ms
247,480 KB
testcase_14 AC 305 ms
252,160 KB
testcase_15 AC 304 ms
247,512 KB
testcase_16 AC 306 ms
248,976 KB
testcase_17 AC 302 ms
251,920 KB
testcase_18 AC 307 ms
248,036 KB
testcase_19 AC 301 ms
248,280 KB
testcase_20 AC 305 ms
247,544 KB
testcase_21 AC 301 ms
247,816 KB
testcase_22 AC 304 ms
247,960 KB
testcase_23 AC 298 ms
247,636 KB
testcase_24 AC 297 ms
251,924 KB
testcase_25 AC 304 ms
249,092 KB
testcase_26 AC 302 ms
248,132 KB
testcase_27 WA -
testcase_28 AC 304 ms
247,876 KB
testcase_29 AC 300 ms
468,692 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(join(ans, " "))
end
main()
0