結果

問題 No.666 1000000007で割るだけ
ユーザー taktak
提出日時 2018-04-12 08:46:14
言語 F#
(F# 4.0)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 10,179 ms
コンパイル使用メモリ 188,748 KB
実行使用メモリ 35,012 KB
最終ジャッジ日時 2024-06-26 21:20:21
合計ジャッジ時間 15,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
34,756 KB
testcase_01 AC 337 ms
34,756 KB
testcase_02 AC 329 ms
34,356 KB
testcase_03 AC 332 ms
34,080 KB
testcase_04 AC 334 ms
34,484 KB
testcase_05 AC 331 ms
34,884 KB
testcase_06 AC 329 ms
34,760 KB
testcase_07 AC 332 ms
35,012 KB
testcase_08 AC 332 ms
34,880 KB
testcase_09 AC 331 ms
34,352 KB
testcase_10 AC 330 ms
34,760 KB
testcase_11 AC 333 ms
33,816 KB
testcase_12 AC 334 ms
34,204 KB
testcase_13 AC 334 ms
34,504 KB
testcase_14 AC 334 ms
34,076 KB
testcase_15 AC 332 ms
34,868 KB
testcase_16 AC 334 ms
34,744 KB
testcase_17 AC 330 ms
34,756 KB
testcase_18 AC 333 ms
34,356 KB
testcase_19 AC 330 ms
34,504 KB
testcase_20 AC 327 ms
34,460 KB
testcase_21 AC 328 ms
34,488 KB
testcase_22 AC 330 ms
34,744 KB
testcase_23 AC 336 ms
34,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (235 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 #

let modVal = 1000000007L
let A,B = let t = stdin.ReadLine().Split() 
                  |> Array.map(int64)
          in t.[0],t.[1]
A*B%modVal |> printfn "%i"
0