結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-09-22 00:49:55 |
| 言語 | F# (F# 10.0) |
| 結果 |
AC
|
| 実行時間 | 53 ms / 2,000 ms |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 7,907 ms |
| コンパイル使用メモリ | 208,648 KB |
| 実行使用メモリ | 33,052 KB |
| 最終ジャッジ日時 | 2026-05-08 22:16:04 |
| 合計ジャッジ時間 | 10,591 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (260 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
let a = [ 1 .. 10 ] |> Seq.map string |> Set.ofSeq let b = (stdin.ReadLine ()).Split ' ' |> Set.ofSeq Set.difference a b |> Set.iter (printfn "%s")