結果

問題 No.2038 Strange Arrange
ユーザー prussian_coderprussian_coder
提出日時 2022-08-12 22:27:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-09-24 18:17:49
合計ジャッジ時間 945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,820 KB
testcase_01 AC 40 ms
52,884 KB
testcase_02 AC 39 ms
52,888 KB
testcase_03 AC 38 ms
53,684 KB
testcase_04 AC 38 ms
53,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[1]*N
for i in range(N):
	a=i+1
	while a%2==0:
		A[i]+=1
		a//=2
print(*A,sep="")		
0