結果

問題 No.373 かけ算と割った余り
ユーザー iwotiwot
提出日時 2020-06-21 02:35:09
言語 F#
(F# 4.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 3,044 ms
コンパイル使用メモリ 156,912 KB
実行使用メモリ 24,796 KB
最終ジャッジ日時 2023-09-16 18:00:51
合計ジャッジ時間 4,370 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
24,796 KB
testcase_01 AC 82 ms
22,900 KB
testcase_02 AC 83 ms
22,964 KB
testcase_03 AC 82 ms
22,868 KB
testcase_04 AC 82 ms
20,916 KB
testcase_05 AC 82 ms
22,804 KB
testcase_06 AC 84 ms
24,796 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

/home/judge/data/code/Main.fs(1,5): warning FS0025: Incomplete pattern matches on this expression. For example, the value '[|_; _; _; _; _|]' may indicate a case not covered by the pattern(s).

ソースコード

diff #

let [| A; B; C; D |] = stdin.ReadLine().Split(' ') |> Array.map int64

printfn "%d" <| A * B % D * C % D
0