結果

問題 No.239 にゃんぱすー
ユーザー YU HiroseYU Hirose
提出日時 2024-05-30 23:43:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 62,232 KB
最終ジャッジ日時 2024-05-30 23:43:16
合計ジャッジ時間 3,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,064 KB
testcase_01 AC 33 ms
52,216 KB
testcase_02 AC 33 ms
53,076 KB
testcase_03 AC 39 ms
53,756 KB
testcase_04 AC 34 ms
52,336 KB
testcase_05 AC 37 ms
53,380 KB
testcase_06 AC 35 ms
52,596 KB
testcase_07 AC 34 ms
52,004 KB
testcase_08 AC 34 ms
53,108 KB
testcase_09 AC 36 ms
52,800 KB
testcase_10 AC 35 ms
54,116 KB
testcase_11 AC 36 ms
52,208 KB
testcase_12 AC 37 ms
53,100 KB
testcase_13 AC 38 ms
59,568 KB
testcase_14 AC 39 ms
59,832 KB
testcase_15 AC 37 ms
59,352 KB
testcase_16 AC 38 ms
58,816 KB
testcase_17 AC 39 ms
59,872 KB
testcase_18 AC 37 ms
59,560 KB
testcase_19 AC 41 ms
59,808 KB
testcase_20 AC 45 ms
59,712 KB
testcase_21 AC 39 ms
60,232 KB
testcase_22 AC 40 ms
62,232 KB
testcase_23 AC 38 ms
60,484 KB
testcase_24 AC 38 ms
60,980 KB
testcase_25 AC 39 ms
61,004 KB
testcase_26 AC 38 ms
60,396 KB
testcase_27 AC 34 ms
53,020 KB
testcase_28 AC 34 ms
52,900 KB
testcase_29 AC 35 ms
52,752 KB
testcase_30 AC 38 ms
60,280 KB
testcase_31 AC 36 ms
59,388 KB
testcase_32 AC 38 ms
59,624 KB
testcase_33 AC 40 ms
60,932 KB
testcase_34 AC 41 ms
60,800 KB
testcase_35 AC 39 ms
59,964 KB
testcase_36 AC 40 ms
61,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = []
for _ in range(n):
    a_ = list(input().split())
    a.append(a_)

cnt = [True] * n
for i in range(n):
    for j in range(n):
        if i == j:
            continue
        if a[i][j] != "nyanpass":
            cnt[j] = False

if sum(cnt) == 1:
    print(cnt.index(True)+1)
else:
    print(-1)
0