結果

問題 No.143 豆
ユーザー regeregeregerege
提出日時 2016-06-21 10:54:04
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 10,682 ms
コンパイル使用メモリ 190,656 KB
実行使用メモリ 35,000 KB
最終ジャッジ日時 2024-10-11 18:17:03
合計ジャッジ時間 14,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 339 ms
34,712 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 342 ms
33,968 KB
testcase_06 AC 343 ms
34,176 KB
testcase_07 AC 341 ms
34,300 KB
testcase_08 AC 343 ms
34,732 KB
testcase_09 AC 343 ms
34,304 KB
testcase_10 AC 340 ms
34,284 KB
testcase_11 AC 344 ms
34,744 KB
testcase_12 AC 343 ms
34,156 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (409 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 f (s:System.String) = s.Split(' ') |> Seq.map int
let m =
    stdin.ReadLine() |> f |> Seq.toList
    |> function
    | [k;n;f] -> k*n
    | _ -> failwith "error!"
let s = stdin.ReadLine() |> f |> Seq.sum
if s > m then -1
else m%s
|> printfn "%d"
0