結果

問題 No.851 テストケース
ユーザー MaboyMaboy
提出日時 2021-06-27 11:55:57
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 6,932 ms
コンパイル使用メモリ 133,704 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-06-25 09:42:07
合計ジャッジ時間 5,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,344 KB
testcase_01 AC 9 ms
9,216 KB
testcase_02 WA -
testcase_03 AC 9 ms
9,344 KB
testcase_04 AC 9 ms
9,472 KB
testcase_05 AC 10 ms
9,216 KB
testcase_06 AC 9 ms
9,472 KB
testcase_07 AC 9 ms
9,472 KB
testcase_08 AC 9 ms
9,344 KB
testcase_09 AC 9 ms
9,344 KB
testcase_10 AC 9 ms
9,472 KB
testcase_11 AC 9 ms
9,344 KB
testcase_12 AC 9 ms
9,216 KB
testcase_13 AC 9 ms
9,344 KB
testcase_14 AC 9 ms
9,216 KB
testcase_15 AC 9 ms
9,216 KB
testcase_16 AC 9 ms
9,344 KB
testcase_17 AC 8 ms
9,472 KB
testcase_18 AC 9 ms
9,344 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 9 ms
9,344 KB
testcase_22 AC 9 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let n = Int(readLine()!)!
var m = [Int]()
for _ in 1...n{
    let s = String(readLine()!)
    if s.contains(" "){
        break
    }else{
        m += [Int(s)!]
    }
}
if m == []{
    print("assert")
}else{
    let l = Array(Set([m[0]+m[1],m[0]+m[2],m[1]+m[2]])).sorted(by:>)
    print(l[1])
}
0