結果

問題 No.2063 ±2^k operations (easy)
ユーザー rururunrururun
提出日時 2024-11-10 20:29:43
言語 Swift
(5.10.0)
結果
TLE  
実行時間 -
コード長 376 bytes
コンパイル時間 1,174 ms
コンパイル使用メモリ 123,260 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-11-10 20:29:49
合計ジャッジ時間 5,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

let s = readLine()!
var k = 1, n = 0
for i in s.reversed(){
    n += Int(String(i))! * k
    k *= 2
}

while n % 2 == 0{
    n /= 2
}
if n == 1{
    print("No")
}else{
    var n1 = n + 1, n2 = n - 1 
    while n1 % 2 == 0{
        n1 /= 2
    }
    while n2 % 2 == 0{
        n2 /= 2
    }
    if n1 == 1 || n2 == 1{
        print("Yes")
    }else{
        print("No")
    }
}
0