結果

問題 No.2063 ±2^k operations (easy)
ユーザー shobonvipshobonvip
提出日時 2022-09-02 21:38:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 59,496 KB
最終ジャッジ日時 2024-11-16 02:40:42
合計ジャッジ時間 2,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,056 KB
testcase_01 AC 38 ms
52,212 KB
testcase_02 AC 38 ms
53,468 KB
testcase_03 AC 38 ms
52,640 KB
testcase_04 AC 37 ms
51,628 KB
testcase_05 AC 38 ms
51,624 KB
testcase_06 AC 38 ms
52,916 KB
testcase_07 AC 38 ms
52,952 KB
testcase_08 AC 37 ms
52,808 KB
testcase_09 AC 38 ms
52,504 KB
testcase_10 AC 38 ms
52,068 KB
testcase_11 AC 38 ms
52,240 KB
testcase_12 AC 38 ms
52,948 KB
testcase_13 AC 38 ms
52,464 KB
testcase_14 AC 37 ms
52,240 KB
testcase_15 AC 38 ms
53,116 KB
testcase_16 AC 37 ms
53,116 KB
testcase_17 AC 42 ms
59,040 KB
testcase_18 AC 42 ms
59,404 KB
testcase_19 AC 42 ms
59,108 KB
testcase_20 AC 42 ms
59,280 KB
testcase_21 AC 43 ms
59,496 KB
testcase_22 AC 45 ms
59,428 KB
testcase_23 AC 44 ms
59,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()

type = 1
cnt = 0
v = 0
mode = 1
for i in range(len(n)):
	if type == 1 and n[i] == "0":
		type = 0
	elif type == 0 and n[i] == "1":
		mode = 0
	if n[i] == "1":
		cnt += 1

#print(cnt, type, mode)

if mode and cnt > 1:
	print("Yes")
elif cnt == 2:
	print("Yes")
else:
	print("No")
0