結果

問題 No.239 にゃんぱすー
ユーザー あかりきあかりき
提出日時 2021-05-24 06:16:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 61,924 KB
最終ジャッジ日時 2024-10-12 12:10:20
合計ジャッジ時間 4,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,404 KB
testcase_01 AC 40 ms
52,756 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
53,492 KB
testcase_05 WA -
testcase_06 AC 37 ms
53,268 KB
testcase_07 AC 38 ms
52,404 KB
testcase_08 AC 39 ms
53,712 KB
testcase_09 WA -
testcase_10 AC 39 ms
52,264 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 43 ms
58,152 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 45 ms
60,664 KB
testcase_21 WA -
testcase_22 AC 46 ms
61,924 KB
testcase_23 AC 43 ms
60,924 KB
testcase_24 AC 44 ms
60,700 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 40 ms
52,404 KB
testcase_28 AC 40 ms
53,884 KB
testcase_29 WA -
testcase_30 AC 44 ms
59,488 KB
testcase_31 AC 42 ms
59,524 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 46 ms
61,428 KB
testcase_35 WA -
testcase_36 AC 45 ms
59,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[input().split() for i in range(n)]
ans=[]
for i in range(n):
  f=1
  for j in range(n):
    if i!=j:
      if a[j][i]!='nyapass':
        f=0
  if f==1:
    ans.append(i)
if len(ans)==1:
  print(ans[0]+1)
else:
  print(-1)
0