結果
| 問題 | No.2778 Is there Same letter? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-05-02 00:06:47 |
| 言語 | Standard ML (MLton 20241230) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 806 bytes |
| 記録 | |
| コンパイル時間 | 3,259 ms |
| コンパイル使用メモリ | 704,868 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-02 00:06:54 |
| 合計ジャッジ時間 | 5,743 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
fun readInt () =
valOf (TextIO.scanStream (Int.scan StringCvt.DEC) TextIO.stdIn)
fun readStr () =
let
fun scan reader stream = SOME (StringCvt.splitl (not o Char.isSpace) reader (StringCvt.skipWS reader stream))
in
valOf (TextIO.scanStream scan TextIO.stdIn)
end
fun member x nil = false
| member x (h::tl) =
if x = h
then true
else member x tl
fun asSet nil = nil
| asSet (h::tl) =
let
val set' = asSet tl
in
if member h set'
then set'
else h :: set'
end
val () =
let
val n = readInt ()
val s = readStr ()
val set = asSet (String.explode s)
val ans = if List.length set = n then "No"
else "Yes"
in
print (ans ^ "\n")
end