結果
| 問題 | No.2715 Unique Chimatagram |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2024-02-08 10:02:10 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 169 bytes |
| 記録 | |
| コンパイル時間 | 288 ms |
| コンパイル使用メモリ | 21,468 KB |
| 実行使用メモリ | 15,788 KB |
| 最終ジャッジ日時 | 2026-09-05 16:14:33 |
| 合計ジャッジ時間 | 6,939 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 36 WA * 4 |
ソースコード
#嘘解法
I,R=input,range
D={}
for n in R(int(I())):
S="".join(sorted(I()))
if S in D:D[S]+=1
else:D[S]=1
for S in sorted(D):
if D[S]<2:exit(print("a"+S))
print(-1)