結果
| 問題 | No.547 未知の言語 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-10-18 16:14:02 |
| 言語 | F# (F# 10.0) |
| 結果 |
AC
|
| 実行時間 | 217 ms / 2,000 ms |
| コード長 | 279 bytes |
| 記録 | |
| コンパイル時間 | 7,267 ms |
| コンパイル使用メモリ | 208,064 KB |
| 実行使用メモリ | 37,312 KB |
| 最終ジャッジ日時 | 2026-03-12 16:30:45 |
| 合計ジャッジ時間 | 15,501 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (187 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
let split = fun (s:string) -> s.Split ' ' stdin.ReadLine () |> ignore Seq.zip (stdin.ReadLine () |> split) (stdin.ReadLine () |> split) |> Seq.mapi (fun i e -> i+1, e) |> Seq.filter (fun (i, e) -> (fst e) <> (snd e)) |> Seq.head |> fun (i, (a, b)) -> printf "%d\n%s\n%s\n" i a b