結果

問題 No.2778 Is there Same letter?
ユーザー noriocnorioc
提出日時 2024-06-07 22:44:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 55,380 KB
最終ジャッジ日時 2024-06-07 22:44:39
合計ジャッジ時間 1,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,380 KB
testcase_01 AC 43 ms
54,552 KB
testcase_02 AC 39 ms
54,592 KB
testcase_03 AC 40 ms
53,816 KB
testcase_04 AC 41 ms
54,308 KB
testcase_05 AC 41 ms
54,540 KB
testcase_06 AC 41 ms
55,192 KB
testcase_07 AC 41 ms
54,284 KB
testcase_08 AC 40 ms
54,856 KB
testcase_09 AC 39 ms
54,020 KB
testcase_10 AC 40 ms
54,224 KB
testcase_11 AC 40 ms
54,936 KB
testcase_12 AC 40 ms
54,424 KB
testcase_13 AC 41 ms
54,736 KB
testcase_14 AC 39 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
S = input()

freq = Counter(S)
for v in freq.values():
    if v >= 2:
        print('Yes')
        break
else:
    print('No')
0