結果

問題 No.542 1円玉と5円玉
ユーザー natoriusannatoriusan
提出日時 2023-07-30 16:51:18
言語 F#
(F# 4.0)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 8,517 ms
コンパイル使用メモリ 205,252 KB
実行使用メモリ 39,080 KB
最終ジャッジ日時 2024-10-09 12:03:56
合計ジャッジ時間 14,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
35,792 KB
testcase_01 AC 346 ms
35,664 KB
testcase_02 AC 341 ms
35,536 KB
testcase_03 AC 339 ms
35,656 KB
testcase_04 AC 342 ms
35,664 KB
testcase_05 AC 343 ms
36,024 KB
testcase_06 AC 345 ms
35,828 KB
testcase_07 AC 344 ms
35,980 KB
testcase_08 AC 344 ms
36,100 KB
testcase_09 AC 368 ms
36,412 KB
testcase_10 AC 346 ms
35,696 KB
testcase_11 AC 350 ms
35,824 KB
testcase_12 AC 359 ms
39,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (237 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

let aArray = [|0..a|]
let bArray = Array.map ((*)5) [|0..b|]

[|
    for i in aArray ->
        [|
            for j in bArray ->
                i + j
        |]
|] |> Array.concat |> Set.ofArray |> Seq.toArray |> Array.sort |> fun x -> x.[1..] |> Array.iter (printfn "%d")
0