結果

問題 No.374 コイン
ユーザー iwotiwot
提出日時 2020-06-22 17:02:25
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 106 bytes
コンパイル時間 4,759 ms
コンパイル使用メモリ 154,764 KB
実行使用メモリ 24,488 KB
最終ジャッジ日時 2023-09-16 19:15:23
合計ジャッジ時間 8,108 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
22,424 KB
testcase_01 AC 68 ms
24,436 KB
testcase_02 AC 64 ms
22,412 KB
testcase_03 AC 66 ms
24,380 KB
testcase_04 AC 63 ms
22,420 KB
testcase_05 AC 65 ms
24,476 KB
testcase_06 AC 64 ms
22,440 KB
testcase_07 AC 67 ms
22,392 KB
testcase_08 AC 67 ms
24,376 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 67 ms
22,380 KB
testcase_13 AC 64 ms
22,444 KB
testcase_14 AC 65 ms
22,360 KB
testcase_15 AC 68 ms
22,388 KB
testcase_16 AC 67 ms
22,400 KB
testcase_17 AC 68 ms
24,488 KB
testcase_18 AC 67 ms
22,372 KB
testcase_19 AC 68 ms
24,404 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 67 ms
22,292 KB
testcase_24 AC 67 ms
22,432 KB
testcase_25 AC 66 ms
22,452 KB
testcase_26 RE -
testcase_27 AC 67 ms
22,424 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 |] = stdin.ReadLine().Split(' ') |> Array.map int

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