結果

問題 No.3086 Re One Two
ユーザー tkykwtnb
提出日時 2025-04-04 23:18:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2025-04-04 23:18:52
合計ジャッジ時間 14,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
stack=[]
for i in range(1,N+1):
    A,B=map(int,input().split())
    if A==0:
        if B==0:
            print(i)
            while len(stack) and stack[-1][0][0]==1:
                (a,b),ii=stack.pop()
                print(ii)
                if b==1:
                    print(stack.pop()[1])
        elif B==1:
            print(i)
            print(stack.pop()[1])
        else:
            stack.append(((0,2),i))
    else:
        if B==0:
            stack.append(((1,0),i))
        elif B==1:
            stack.append(((1,1),i))
while len(stack):
    print(stack.pop()[1])
0