結果

問題 No.239 にゃんぱすー
ユーザー kuuso1kuuso1
提出日時 2016-08-18 06:20:39
言語 F#
(F# 4.0)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 8,386 ms
コンパイル使用メモリ 189,300 KB
実行使用メモリ 35,716 KB
最終ジャッジ日時 2024-11-07 19:10:42
合計ジャッジ時間 22,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
33,780 KB
testcase_01 AC 335 ms
33,784 KB
testcase_02 AC 339 ms
34,448 KB
testcase_03 AC 339 ms
33,780 KB
testcase_04 AC 340 ms
34,440 KB
testcase_05 AC 339 ms
34,036 KB
testcase_06 AC 345 ms
33,900 KB
testcase_07 AC 334 ms
34,316 KB
testcase_08 AC 339 ms
34,164 KB
testcase_09 AC 333 ms
34,324 KB
testcase_10 AC 336 ms
34,640 KB
testcase_11 AC 333 ms
34,800 KB
testcase_12 AC 335 ms
34,988 KB
testcase_13 AC 334 ms
34,880 KB
testcase_14 AC 336 ms
34,924 KB
testcase_15 AC 335 ms
34,924 KB
testcase_16 AC 337 ms
34,880 KB
testcase_17 AC 342 ms
35,052 KB
testcase_18 AC 342 ms
35,104 KB
testcase_19 AC 340 ms
35,144 KB
testcase_20 AC 336 ms
35,076 KB
testcase_21 AC 336 ms
34,896 KB
testcase_22 AC 338 ms
35,124 KB
testcase_23 AC 337 ms
35,304 KB
testcase_24 AC 338 ms
34,972 KB
testcase_25 AC 339 ms
35,360 KB
testcase_26 AC 337 ms
35,716 KB
testcase_27 AC 337 ms
33,780 KB
testcase_28 AC 333 ms
34,636 KB
testcase_29 AC 334 ms
34,600 KB
testcase_30 AC 334 ms
34,920 KB
testcase_31 AC 336 ms
34,192 KB
testcase_32 AC 341 ms
34,148 KB
testcase_33 AC 343 ms
34,680 KB
testcase_34 AC 342 ms
34,348 KB
testcase_35 AC 342 ms
35,652 KB
testcase_36 AC 342 ms
35,588 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (256 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
type Sol() =
    member this.Solve() = 
        let N = stdin.ReadLine() |> int
        let S = Array.zeroCreate<string array> N
        for i = 0 to (N-1) do
            S.[i] <- stdin.ReadLine().Split();
        
        let checkRenchon (s :string [] []) j = 
            let mutable chk = true
            for i=0 to (N-1) do 
                if i <> j then (chk <- (chk && (s.[i].[j] = "nyanpass" )))
            chk
        
        let mutable cnt = 0
        let mutable idx = -1
        for i = 0 to (N-1) do 
            match (checkRenchon S i) with
            | true -> (cnt <- (cnt + 1) ;idx <- (i+1))
            | false -> ()
        
        printfn "%d" (if cnt = 1 then idx else -1)

let mySol = new Sol()
mySol.Solve()
0