結果

問題 No.976 2 の 128 乗と M
ユーザー ikdikd
提出日時 2020-05-03 15:19:34
言語 F#
(F# 4.0)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 15,038 ms
コンパイル使用メモリ 190,184 KB
実行使用メモリ 35,048 KB
最終ジャッジ日時 2024-06-12 06:36:02
合計ジャッジ時間 34,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
35,036 KB
testcase_01 AC 316 ms
34,792 KB
testcase_02 AC 327 ms
35,044 KB
testcase_03 AC 317 ms
34,656 KB
testcase_04 AC 319 ms
34,784 KB
testcase_05 AC 324 ms
34,916 KB
testcase_06 AC 322 ms
35,044 KB
testcase_07 AC 315 ms
34,916 KB
testcase_08 AC 321 ms
34,664 KB
testcase_09 AC 328 ms
34,916 KB
testcase_10 AC 320 ms
34,896 KB
testcase_11 AC 331 ms
35,040 KB
testcase_12 AC 321 ms
34,796 KB
testcase_13 AC 317 ms
34,656 KB
testcase_14 AC 332 ms
34,904 KB
testcase_15 AC 324 ms
34,908 KB
testcase_16 AC 315 ms
34,908 KB
testcase_17 AC 323 ms
35,048 KB
testcase_18 AC 330 ms
34,904 KB
testcase_19 AC 318 ms
34,792 KB
testcase_20 AC 322 ms
35,048 KB
testcase_21 AC 320 ms
35,040 KB
testcase_22 AC 311 ms
34,928 KB
testcase_23 AC 321 ms
35,032 KB
testcase_24 AC 315 ms
35,048 KB
testcase_25 AC 315 ms
34,792 KB
testcase_26 AC 320 ms
34,792 KB
testcase_27 AC 317 ms
35,040 KB
testcase_28 AC 312 ms
34,788 KB
testcase_29 AC 321 ms
34,784 KB
testcase_30 AC 321 ms
34,796 KB
testcase_31 AC 316 ms
34,796 KB
testcase_32 AC 322 ms
34,912 KB
testcase_33 AC 323 ms
34,792 KB
testcase_34 AC 319 ms
34,792 KB
testcase_35 AC 324 ms
34,784 KB
testcase_36 AC 315 ms
34,360 KB
testcase_37 AC 315 ms
34,788 KB
testcase_38 AC 325 ms
34,784 KB
testcase_39 AC 326 ms
34,892 KB
testcase_40 AC 316 ms
34,796 KB
testcase_41 AC 320 ms
34,924 KB
testcase_42 AC 315 ms
34,364 KB
testcase_43 AC 310 ms
35,040 KB
testcase_44 AC 318 ms
34,776 KB
testcase_45 AC 324 ms
34,792 KB
testcase_46 AC 319 ms
34,920 KB
testcase_47 AC 323 ms
34,664 KB
testcase_48 AC 325 ms
34,660 KB
testcase_49 AC 324 ms
34,664 KB
testcase_50 AC 327 ms
35,040 KB
testcase_51 AC 329 ms
34,792 KB
testcase_52 AC 323 ms
34,908 KB
testcase_53 AC 326 ms
34,660 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (463 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let m = stdin.ReadLine() |> int64
    let ans = [1 .. 128] |> List.fold (fun acc _ -> acc * 2L % m) 1L
    printfn "%d" ans
    0 // return an integer exit code
0