結果

問題 No.3086 Re One Two
ユーザー tkykwtnb
提出日時 2025-04-04 23:03:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 89,228 KB
最終ジャッジ日時 2025-04-04 23:04:13
合計ジャッジ時間 14,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 21
権限があれば一括ダウンロードができます

ソースコード

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]==1:
                print(stack.pop()[1])
        elif B==1:
            print(i)
            print(stack.pop()[1])
        else:
            stack.append((2,i))
    else:stack.append((1,i))
while len(stack):
    print(stack.pop()[1])
0