結果

問題 No.2715 Unique Chimatagram
ユーザー kk0414kk0414
提出日時 2024-04-10 23:07:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 526 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 76,776 KB
最終ジャッジ日時 2024-10-02 21:03:54
合計ジャッジ時間 5,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,028 KB
testcase_01 AC 40 ms
52,488 KB
testcase_02 AC 38 ms
52,372 KB
testcase_03 WA -
testcase_04 AC 38 ms
52,572 KB
testcase_05 AC 39 ms
52,360 KB
testcase_06 AC 38 ms
52,688 KB
testcase_07 AC 40 ms
52,944 KB
testcase_08 AC 59 ms
65,824 KB
testcase_09 WA -
testcase_10 AC 59 ms
66,948 KB
testcase_11 AC 61 ms
68,044 KB
testcase_12 AC 58 ms
65,968 KB
testcase_13 AC 59 ms
66,212 KB
testcase_14 AC 63 ms
70,276 KB
testcase_15 AC 63 ms
69,056 KB
testcase_16 AC 58 ms
65,872 KB
testcase_17 AC 57 ms
66,488 KB
testcase_18 AC 59 ms
68,136 KB
testcase_19 AC 60 ms
68,920 KB
testcase_20 AC 60 ms
68,112 KB
testcase_21 AC 60 ms
69,388 KB
testcase_22 AC 60 ms
68,164 KB
testcase_23 AC 60 ms
67,932 KB
testcase_24 AC 59 ms
69,676 KB
testcase_25 AC 59 ms
67,596 KB
testcase_26 AC 61 ms
69,192 KB
testcase_27 AC 59 ms
68,976 KB
testcase_28 AC 99 ms
76,528 KB
testcase_29 AC 69 ms
69,804 KB
testcase_30 AC 82 ms
74,832 KB
testcase_31 AC 64 ms
69,352 KB
testcase_32 AC 147 ms
76,776 KB
testcase_33 AC 38 ms
52,948 KB
testcase_34 AC 38 ms
52,676 KB
testcase_35 AC 39 ms
52,904 KB
testcase_36 AC 38 ms
53,168 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 547 ms
76,580 KB
testcase_42 AC 250 ms
76,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [[0]*26 for _ in range(N)]
cand = []
for i in range(N):
    s = input()
    cand.append(s)
    for si in s:
        j = ord(si)-ord("a")
        L[i][j] += 1

for i in range(N):
    OK = [False] * N
    OK[i] = True
    for j in range(N):
        if i==j:continue
        flag = False
        for k in range(26):
            if L[j][k] != L[i][k]:
                flag = True
        OK[j] = flag
    if all(OK): break

if not all(OK):
    print("-1")
else:
    ans = cand[i] + "a"
    print(ans)
        
0