結果

問題 No.666 1000000007で割るだけ
ユーザー taktak
提出日時 2018-04-12 08:43:59
言語 F#
(F# 4.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 3,592 ms
コンパイル使用メモリ 156,396 KB
実行使用メモリ 26,012 KB
最終ジャッジ日時 2023-09-09 04:13:19
合計ジャッジ時間 7,126 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
23,952 KB
testcase_01 AC 113 ms
25,980 KB
testcase_02 AC 114 ms
23,800 KB
testcase_03 AC 114 ms
23,972 KB
testcase_04 AC 114 ms
24,016 KB
testcase_05 AC 113 ms
25,960 KB
testcase_06 AC 114 ms
23,980 KB
testcase_07 AC 113 ms
23,956 KB
testcase_08 AC 114 ms
26,000 KB
testcase_09 AC 113 ms
25,956 KB
testcase_10 AC 113 ms
24,108 KB
testcase_11 AC 114 ms
23,896 KB
testcase_12 AC 114 ms
23,996 KB
testcase_13 AC 115 ms
25,932 KB
testcase_14 AC 115 ms
24,136 KB
testcase_15 AC 114 ms
24,092 KB
testcase_16 AC 114 ms
26,012 KB
testcase_17 AC 114 ms
24,060 KB
testcase_18 AC 115 ms
21,792 KB
testcase_19 AC 116 ms
24,044 KB
testcase_20 AC 117 ms
23,968 KB
testcase_21 AC 115 ms
23,952 KB
testcase_22 AC 115 ms
24,124 KB
testcase_23 AC 115 ms
23,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

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