結果

問題 No.2015 Stair Counter
ユーザー rururunrururun
提出日時 2024-11-10 13:01:29
言語 Swift
(5.10.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 2,901 ms
コンパイル使用メモリ 132,340 KB
実行使用メモリ 20,160 KB
最終ジャッジ日時 2024-11-10 13:01:36
合計ジャッジ時間 5,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
8,960 KB
testcase_01 AC 67 ms
9,088 KB
testcase_02 AC 64 ms
8,960 KB
testcase_03 AC 67 ms
9,088 KB
testcase_04 AC 57 ms
9,088 KB
testcase_05 AC 53 ms
9,088 KB
testcase_06 AC 72 ms
9,088 KB
testcase_07 AC 72 ms
9,088 KB
testcase_08 AC 72 ms
9,088 KB
testcase_09 AC 42 ms
9,088 KB
testcase_10 AC 43 ms
9,216 KB
testcase_11 AC 49 ms
9,088 KB
testcase_12 AC 45 ms
10,340 KB
testcase_13 AC 49 ms
10,216 KB
testcase_14 AC 56 ms
10,744 KB
testcase_15 AC 65 ms
14,284 KB
testcase_16 AC 118 ms
20,160 KB
testcase_17 AC 42 ms
17,596 KB
testcase_18 AC 93 ms
19,824 KB
testcase_19 AC 108 ms
20,156 KB
testcase_20 AC 50 ms
17,680 KB
testcase_21 AC 57 ms
8,960 KB
testcase_22 AC 64 ms
8,960 KB
testcase_23 AC 70 ms
8,960 KB
testcase_24 AC 58 ms
8,960 KB
testcase_25 AC 56 ms
9,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:2:5: warning: immutable value 'i' was never used; consider replacing with '_' or removing it
for i in 1...t{
    ^
    _

ソースコード

diff #

let t = Int(readLine()!)!
for i in 1...t{
    let nm = readLine()!.split(separator: " ").map{Int($0)!}
    let (n,m) = (nm[0],nm[1])
    var A = [0,m] + readLine()!.split(separator: " ").map{Int($0)!}
    
    var f = true
    if n > 1{
    for i in 2...n{
        let a = A[i]-A[i-2]
        if a < 0{
            f = false
        }
        A[i-1] -= a
        if A[i-1] < 0{
            f = false
        }
    }
    }
    if A[n+1] != A[n-1] + A[n]{
        f = false
    }
    if f {
        print("Yes")
    }else{
        print("No")
    }
}
0