結果

問題 No.2063 ±2^k operations (easy)
ユーザー ohanaohana
提出日時 2023-10-02 11:30:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-07-26 13:41:20
合計ジャッジ時間 1,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,088 KB
testcase_01 AC 37 ms
52,744 KB
testcase_02 AC 38 ms
52,552 KB
testcase_03 AC 37 ms
52,092 KB
testcase_04 AC 38 ms
51,880 KB
testcase_05 AC 34 ms
53,492 KB
testcase_06 AC 35 ms
53,424 KB
testcase_07 AC 35 ms
52,740 KB
testcase_08 AC 34 ms
53,916 KB
testcase_09 AC 34 ms
52,216 KB
testcase_10 AC 33 ms
52,692 KB
testcase_11 AC 34 ms
53,108 KB
testcase_12 AC 33 ms
52,924 KB
testcase_13 AC 35 ms
52,616 KB
testcase_14 AC 37 ms
52,124 KB
testcase_15 AC 37 ms
53,548 KB
testcase_16 AC 32 ms
52,776 KB
testcase_17 AC 37 ms
57,288 KB
testcase_18 AC 36 ms
57,740 KB
testcase_19 AC 37 ms
56,616 KB
testcase_20 AC 37 ms
56,524 KB
testcase_21 AC 45 ms
66,272 KB
testcase_22 AC 64 ms
84,404 KB
testcase_23 AC 65 ms
84,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

s = input()

if set(s[1:]) == {"0"} or s == "1":
    print("No")
elif s.count("1") == 2 or set(s) == {"1"} or len(list(itertools.groupby(s))) == 2:
    print("Yes")
else:
    print("No")
0