結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 360 ms
248,412 KB
testcase_01 AC 347 ms
248,176 KB
testcase_02 AC 308 ms
252,804 KB
testcase_03 AC 325 ms
252,020 KB
testcase_04 AC 379 ms
248,200 KB
testcase_05 AC 379 ms
253,240 KB
testcase_06 AC 347 ms
247,564 KB
testcase_07 AC 340 ms
248,316 KB
testcase_08 AC 388 ms
248,408 KB
testcase_09 AC 379 ms
248,740 KB
testcase_10 AC 344 ms
248,976 KB
testcase_11 AC 372 ms
247,824 KB
testcase_12 AC 406 ms
247,892 KB
testcase_13 AC 346 ms
252,300 KB
testcase_14 AC 373 ms
253,036 KB
testcase_15 AC 345 ms
249,284 KB
testcase_16 AC 345 ms
248,388 KB
testcase_17 AC 319 ms
247,780 KB
testcase_18 AC 367 ms
253,124 KB
testcase_19 AC 317 ms
252,520 KB
testcase_20 AC 341 ms
247,488 KB
testcase_21 AC 374 ms
248,176 KB
testcase_22 AC 342 ms
247,600 KB
testcase_23 AC 387 ms
252,168 KB
testcase_24 AC 391 ms
248,428 KB
testcase_25 AC 352 ms
249,380 KB
testcase_26 AC 350 ms
247,296 KB
testcase_27 WA -
testcase_28 AC 352 ms
250,256 KB
testcase_29 AC 311 ms
248,512 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