結果

問題 No.2749 随伴関手入門
ユーザー KeiKei
提出日時 2024-05-10 22:22:44
言語 Julia
(1.10.2)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 257,056 KB
最終ジャッジ日時 2024-05-10 22:22:56
合計ジャッジ時間 10,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
252,580 KB
testcase_01 AC 290 ms
252,720 KB
testcase_02 AC 314 ms
252,604 KB
testcase_03 AC 292 ms
256,880 KB
testcase_04 AC 286 ms
252,712 KB
testcase_05 AC 287 ms
252,552 KB
testcase_06 AC 313 ms
253,440 KB
testcase_07 AC 288 ms
252,264 KB
testcase_08 AC 288 ms
255,116 KB
testcase_09 AC 292 ms
252,032 KB
testcase_10 AC 313 ms
252,136 KB
testcase_11 AC 284 ms
252,012 KB
testcase_12 AC 295 ms
252,192 KB
testcase_13 AC 289 ms
252,176 KB
testcase_14 AC 309 ms
252,896 KB
testcase_15 AC 309 ms
254,740 KB
testcase_16 AC 304 ms
253,476 KB
testcase_17 AC 303 ms
256,796 KB
testcase_18 AC 319 ms
252,860 KB
testcase_19 AC 294 ms
256,832 KB
testcase_20 AC 291 ms
251,792 KB
testcase_21 AC 289 ms
252,056 KB
testcase_22 AC 313 ms
252,496 KB
testcase_23 AC 297 ms
256,896 KB
testcase_24 AC 290 ms
253,032 KB
testcase_25 AC 310 ms
251,980 KB
testcase_26 AC 324 ms
257,056 KB
testcase_27 AC 291 ms
256,816 KB
testcase_28 AC 294 ms
252,952 KB
testcase_29 AC 300 ms
253,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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