結果

問題 No.239 にゃんぱすー
ユーザー pypypymipypypymi
提出日時 2022-02-19 14:54:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 10,748 KB
実行使用メモリ 8,004 KB
最終ジャッジ日時 2023-09-11 20:40:12
合計ジャッジ時間 3,804 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,784 KB
testcase_01 AC 16 ms
7,836 KB
testcase_02 AC 15 ms
7,788 KB
testcase_03 AC 16 ms
7,712 KB
testcase_04 AC 15 ms
7,904 KB
testcase_05 WA -
testcase_06 AC 15 ms
7,836 KB
testcase_07 AC 15 ms
7,888 KB
testcase_08 AC 16 ms
7,888 KB
testcase_09 AC 16 ms
7,792 KB
testcase_10 AC 16 ms
7,776 KB
testcase_11 WA -
testcase_12 AC 16 ms
7,740 KB
testcase_13 AC 15 ms
7,780 KB
testcase_14 AC 15 ms
7,908 KB
testcase_15 AC 16 ms
7,712 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 16 ms
7,788 KB
testcase_21 WA -
testcase_22 AC 16 ms
7,788 KB
testcase_23 AC 16 ms
7,936 KB
testcase_24 AC 16 ms
7,736 KB
testcase_25 AC 16 ms
7,788 KB
testcase_26 WA -
testcase_27 AC 15 ms
7,928 KB
testcase_28 AC 15 ms
7,740 KB
testcase_29 AC 15 ms
7,784 KB
testcase_30 AC 15 ms
7,740 KB
testcase_31 AC 15 ms
7,740 KB
testcase_32 AC 16 ms
7,756 KB
testcase_33 WA -
testcase_34 AC 16 ms
7,728 KB
testcase_35 AC 17 ms
7,904 KB
testcase_36 AC 17 ms
7,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
nya_l = []
for i in range(n):
    s = input().split()
    array = [i+1 for i,si in enumerate(s) if si=='nyanpass']
    nya_l+=array
print(list(set(nya_l))[0]) if len(set(nya_l))==1 else print(-1)
0