結果

問題 No.374 コイン
ユーザー iwotiwot
提出日時 2020-06-22 17:02:25
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 106 bytes
コンパイル時間 14,497 ms
コンパイル使用メモリ 204,624 KB
実行使用メモリ 39,136 KB
最終ジャッジ日時 2024-07-03 18:42:33
合計ジャッジ時間 12,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
30,080 KB
testcase_01 AC 64 ms
30,336 KB
testcase_02 AC 64 ms
30,208 KB
testcase_03 AC 64 ms
29,952 KB
testcase_04 AC 64 ms
30,080 KB
testcase_05 AC 64 ms
30,080 KB
testcase_06 AC 65 ms
30,080 KB
testcase_07 AC 65 ms
29,952 KB
testcase_08 AC 64 ms
30,188 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 64 ms
30,080 KB
testcase_13 AC 65 ms
30,060 KB
testcase_14 AC 65 ms
30,080 KB
testcase_15 AC 66 ms
29,952 KB
testcase_16 AC 65 ms
29,952 KB
testcase_17 AC 67 ms
30,208 KB
testcase_18 AC 64 ms
30,080 KB
testcase_19 AC 64 ms
29,952 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 64 ms
30,080 KB
testcase_24 AC 65 ms
29,952 KB
testcase_25 AC 64 ms
30,080 KB
testcase_26 RE -
testcase_27 AC 64 ms
30,200 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (322 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(1,5): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

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

if A < B then printfn "K" else printfn "S"
0