結果

問題 No.547 未知の言語
ユーザー taktak
提出日時 2018-03-29 00:00:59
言語 F#
(F# 4.0)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 15,523 ms
コンパイル使用メモリ 190,300 KB
実行使用メモリ 34,644 KB
最終ジャッジ日時 2024-06-26 03:23:21
合計ジャッジ時間 28,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,644 KB
testcase_01 AC 337 ms
34,496 KB
testcase_02 AC 338 ms
34,192 KB
testcase_03 AC 336 ms
34,264 KB
testcase_04 AC 336 ms
34,256 KB
testcase_05 AC 338 ms
34,512 KB
testcase_06 AC 336 ms
34,188 KB
testcase_07 AC 336 ms
34,368 KB
testcase_08 AC 339 ms
34,640 KB
testcase_09 AC 338 ms
34,516 KB
testcase_10 AC 340 ms
34,516 KB
testcase_11 AC 339 ms
34,512 KB
testcase_12 AC 337 ms
34,640 KB
testcase_13 AC 340 ms
34,324 KB
testcase_14 AC 340 ms
34,548 KB
testcase_15 AC 336 ms
34,316 KB
testcase_16 AC 342 ms
34,360 KB
testcase_17 AC 340 ms
34,324 KB
testcase_18 AC 340 ms
34,576 KB
testcase_19 AC 339 ms
34,384 KB
testcase_20 AC 339 ms
34,256 KB
testcase_21 AC 338 ms
34,484 KB
testcase_22 AC 340 ms
34,644 KB
testcase_23 AC 339 ms
34,448 KB
testcase_24 AC 336 ms
34,360 KB
testcase_25 AC 338 ms
34,452 KB
testcase_26 AC 338 ms
34,604 KB
testcase_27 AC 340 ms
34,380 KB
testcase_28 AC 338 ms
34,448 KB
testcase_29 AC 335 ms
34,356 KB
testcase_30 AC 341 ms
34,248 KB
testcase_31 AC 340 ms
34,520 KB
testcase_32 AC 336 ms
34,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (363 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 #

open System

let read() = Console.ReadLine()

let N = read() |> ignore
let S = read().Split()
let T = read().Split()

(S,T)
||> Array.zip
|> Array.indexed
|> Array.find(fun x -> let l,r = snd x in l <> r)
|> (fun x ->
        let idx = (fst x) + 1
        let S   = (snd x) |> fst
        let T   = (snd x) |> snd
        printfn "%i" idx
        printfn "%s" S
        printfn "%s" T)
0