結果

問題 No.547 未知の言語
ユーザー Nobita GomuNobita Gomu
提出日時 2017-10-18 16:14:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 9,847 ms
コンパイル使用メモリ 190,132 KB
実行使用メモリ 35,032 KB
最終ジャッジ日時 2024-06-26 02:52:07
合計ジャッジ時間 22,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
34,004 KB
testcase_01 AC 348 ms
33,932 KB
testcase_02 AC 353 ms
34,440 KB
testcase_03 AC 350 ms
34,900 KB
testcase_04 AC 353 ms
34,660 KB
testcase_05 AC 352 ms
33,928 KB
testcase_06 AC 348 ms
34,532 KB
testcase_07 AC 348 ms
34,728 KB
testcase_08 AC 350 ms
33,908 KB
testcase_09 AC 350 ms
34,324 KB
testcase_10 AC 352 ms
34,692 KB
testcase_11 AC 351 ms
35,032 KB
testcase_12 AC 350 ms
34,096 KB
testcase_13 AC 351 ms
34,856 KB
testcase_14 AC 354 ms
34,656 KB
testcase_15 AC 353 ms
34,292 KB
testcase_16 AC 357 ms
33,868 KB
testcase_17 AC 350 ms
34,360 KB
testcase_18 AC 358 ms
34,044 KB
testcase_19 AC 355 ms
34,056 KB
testcase_20 AC 355 ms
34,780 KB
testcase_21 AC 364 ms
34,064 KB
testcase_22 AC 351 ms
34,092 KB
testcase_23 AC 351 ms
34,088 KB
testcase_24 AC 358 ms
34,028 KB
testcase_25 AC 349 ms
34,788 KB
testcase_26 AC 355 ms
34,340 KB
testcase_27 AC 356 ms
33,920 KB
testcase_28 AC 350 ms
34,148 KB
testcase_29 AC 351 ms
34,048 KB
testcase_30 AC 348 ms
33,908 KB
testcase_31 AC 352 ms
34,348 KB
testcase_32 AC 351 ms
34,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (297 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 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
0