結果
| 問題 | No.349 干支の置き物 |
| コンテスト | |
| ユーザー |
バカらっく
|
| 提出日時 | 2018-03-02 17:16:23 |
| 言語 | Swift (6.0.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 320 bytes |
| 記録 | |
| コンパイル時間 | 1,064 ms |
| コンパイル使用メモリ | 123,376 KB |
| 実行使用メモリ | 9,344 KB |
| 最終ジャッジ日時 | 2024-11-30 12:05:11 |
| 合計ジャッジ時間 | 2,257 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 WA * 3 |
コンパイルメッセージ
Main.swift:6:5: warning: immutable value 'i' was never used; consider replacing with '_' or removing it
for i in 0..<itemCount {
^
_
ソースコード
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]!)
}
if(mx > itemCount / 2) {
print("NO")
} else {
print("YES")
}
バカらっく