結果

問題 No.239 にゃんぱすー
ユーザー バカらっくバカらっく
提出日時 2018-03-01 14:27:53
言語 Swift
(6.0.3)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 1,230 ms
コンパイル使用メモリ 126,428 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-11-30 12:00:02
合計ジャッジ時間 2,669 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,216 KB
testcase_01 AC 9 ms
9,216 KB
testcase_02 AC 9 ms
9,216 KB
testcase_03 AC 9 ms
9,216 KB
testcase_04 AC 9 ms
9,216 KB
testcase_05 AC 10 ms
9,216 KB
testcase_06 AC 9 ms
9,344 KB
testcase_07 AC 9 ms
9,216 KB
testcase_08 AC 9 ms
9,344 KB
testcase_09 AC 9 ms
9,472 KB
testcase_10 AC 10 ms
9,216 KB
testcase_11 AC 10 ms
9,472 KB
testcase_12 AC 10 ms
9,344 KB
testcase_13 AC 11 ms
9,216 KB
testcase_14 AC 11 ms
9,216 KB
testcase_15 AC 12 ms
9,344 KB
testcase_16 AC 13 ms
9,344 KB
testcase_17 AC 13 ms
9,344 KB
testcase_18 AC 13 ms
9,344 KB
testcase_19 AC 14 ms
9,600 KB
testcase_20 AC 15 ms
9,472 KB
testcase_21 AC 16 ms
9,472 KB
testcase_22 AC 17 ms
9,600 KB
testcase_23 AC 18 ms
9,472 KB
testcase_24 AC 19 ms
9,600 KB
testcase_25 AC 20 ms
9,856 KB
testcase_26 AC 22 ms
9,728 KB
testcase_27 AC 9 ms
9,344 KB
testcase_28 AC 9 ms
9,088 KB
testcase_29 AC 10 ms
9,216 KB
testcase_30 AC 11 ms
9,344 KB
testcase_31 AC 13 ms
9,472 KB
testcase_32 AC 14 ms
9,472 KB
testcase_33 AC 15 ms
9,472 KB
testcase_34 AC 17 ms
9,472 KB
testcase_35 AC 19 ms
9,600 KB
testcase_36 AC 21 ms
9,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:5:5: warning: immutable value 'i' was never used; consider replacing with '_' or removing it
for i in 0..<murabito {
    ^
    _

ソースコード

diff #

let murabito = Int(readLine()!)!

var map = [[String]]()

for i in 0..<murabito {
        map.append(readLine()!.split(separator:" ").map(String.init))
}

var ans:Int? = nil
for i in 0..<murabito {
    var isNyan = true
    for j in 0..<murabito {
        if(map[j][i]=="nyanpass" || map[j][i] == "-") {
            
        } else {
            isNyan = false
            break
        }
    }
    if(isNyan) {
        if(ans == nil) {
            ans = i+1
        } else {
            ans = nil
            break
        }
    }
}

if(ans == nil) {
    print(-1)
} else {
    print(ans!)
}
0