結果

問題 No.2015 Stair Counter
ユーザー rururunrururun
提出日時 2024-11-10 12:57:24
言語 Swift
(5.10.0)
結果
RE  
実行時間 -
コード長 528 bytes
コンパイル時間 13,167 ms
コンパイル使用メモリ 132,188 KB
実行使用メモリ 20,164 KB
最終ジャッジ日時 2024-11-10 12:57:43
合計ジャッジ時間 19,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
8,960 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 46 ms
9,216 KB
testcase_10 AC 49 ms
9,216 KB
testcase_11 AC 54 ms
9,216 KB
testcase_12 AC 52 ms
10,212 KB
testcase_13 AC 50 ms
10,344 KB
testcase_14 AC 58 ms
10,616 KB
testcase_15 AC 65 ms
14,412 KB
testcase_16 AC 121 ms
20,164 KB
testcase_17 AC 41 ms
17,596 KB
testcase_18 AC 92 ms
19,948 KB
testcase_19 AC 109 ms
20,032 KB
testcase_20 AC 48 ms
17,676 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
    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