結果

問題 No.1264 010
ユーザー titiatitia
提出日時 2020-10-23 22:22:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-21 11:00:33
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[1,0,1]+[1]*1000

for i in range(N):
    for j in range(N):
        if A[j]==1 and A[j+1]==0 and A[j+2]==1:
            break
    A[j:j+2]=[0,1,0]

A.reverse()
for a in A:
    print(a,end="")
0