結果

問題 No.349 干支の置き物
コンテスト
ユーザー バカらっく
提出日時 2018-03-02 17:18:05
言語 Swift
(6.2.4)
コンパイル:
swiftc _filename_ -Ounchecked -o a.out
実行:
./a.out
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 352 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 606 ms
コンパイル使用メモリ 138,228 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2026-05-24 03:31:07
合計ジャッジ時間 1,933 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:6:5: warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 4 | 
 5 | var mx = 0
 6 | for i in 0..<itemCount {
   |     `- warning: immutable value 'i' was never used; consider replacing with '_' or removing it [#no-usage]
 7 |     let nm = readLine()!
 8 |     if(dic[nm] == nil) {

ソースコード

diff #
raw source code

let itemCount = Int(readLine()!)!

var dic = [String:Int]()

var mx = 0
for i in 0..<itemCount {
    let nm = readLine()!
    if(dic[nm] == nil) {
        dic[nm] = 1
    } else {
        dic[nm] = dic[nm]! + 1
    }
    mx = max(mx, dic[nm]!)
}

let tmp = itemCount / 2 + (itemCount % 2)
if(mx > tmp) {
    print("NO")    
} else {
    print("YES")
}
0