結果

問題 No.2063 ±2^k operations (easy)
コンテスト
ユーザー shobonvip
提出日時 2022-09-02 21:38:25
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 291 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 411 ms
コンパイル使用メモリ 85,376 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2026-05-11 06:41:48
合計ジャッジ時間 2,729 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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