結果

問題 No.516 赤と青の風船
ユーザー バカらっくバカらっく
提出日時 2018-03-01 13:52:08
言語 Swift
(5.10.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 9,492 ms
コンパイル使用メモリ 116,444 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-05-07 17:19:28
合計ジャッジ時間 2,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,344 KB
testcase_01 AC 8 ms
9,216 KB
testcase_02 AC 7 ms
9,344 KB
testcase_03 AC 8 ms
9,216 KB
testcase_04 AC 7 ms
9,216 KB
testcase_05 AC 7 ms
9,216 KB
testcase_06 AC 7 ms
9,344 KB
testcase_07 AC 7 ms
9,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:5:5: warning: immutable value 'i' was never used; consider replacing with '_' or removing it
for i in 0...2 {
    ^
    _

ソースコード

diff #

var dic = [String:Int]()

var mx = 0
var ans:String = ""
for i in 0...2 {
    let num = readLine()!
    if(dic[num] != nil) {
        dic[num]!+=1
    } else {
        dic[num] = 0
    }
    if(mx<dic[num]!) {
        mx = dic[num]!
        ans = num
    }
}

print(ans)

0