結果

問題 No.1924 3 color painting on a line
ユーザー gew1fw
提出日時 2025-06-12 14:44:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 75 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 58,532 KB
最終ジャッジ日時 2025-06-12 14:45:16
合計ジャッジ時間 2,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input().strip()
distinct = len(set(s))
print(distinct)
0