結果

問題 No.353 ヘイトプラス
ユーザー バカらっくバカらっく
提出日時 2018-03-05 17:56:43
言語 Swift
(5.10.0)
結果
MLE  
実行時間 -
コード長 183 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 129,232 KB
実行使用メモリ 822,904 KB
最終ジャッジ日時 2024-05-07 17:27:47
合計ジャッジ時間 9,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

let inpt = readLine()!.split(separator: " ").map({Int($0)!})
var list = [Int]()

for i in 0..<inpt.count {
    for _ in 0..<inpt[i] {
        list.append(0)
    }
}
print(list.count)
0