結果

問題 No.769 UNOシミュレータ
ユーザー URechaRechaURechaRecha
提出日時 2019-09-09 14:25:41
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,129 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,196 KB
最終ジャッジ日時 2024-11-22 09:27:39
合計ジャッジ時間 4,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 44 ms
51,968 KB
testcase_02 AC 44 ms
52,224 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 60 ms
60,800 KB
testcase_05 AC 59 ms
60,672 KB
testcase_06 AC 59 ms
60,672 KB
testcase_07 AC 59 ms
60,928 KB
testcase_08 AC 60 ms
60,672 KB
testcase_09 AC 102 ms
76,544 KB
testcase_10 AC 101 ms
76,160 KB
testcase_11 AC 115 ms
76,416 KB
testcase_12 AC 151 ms
76,480 KB
testcase_13 AC 152 ms
76,160 KB
testcase_14 AC 137 ms
76,288 KB
testcase_15 AC 192 ms
76,764 KB
testcase_16 AC 176 ms
76,672 KB
testcase_17 AC 190 ms
76,800 KB
testcase_18 AC 215 ms
76,800 KB
testcase_19 AC 227 ms
76,928 KB
testcase_20 AC 225 ms
77,196 KB
testcase_21 AC 224 ms
77,056 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n,m =map(int,input().split())
    players =[0]*n
    cur =-1
    rev =0
    d2,d4=0,0
    def nex(cur):
        cur += [1,-1][rev]
        if cur<0:
            cur = n + cur
        else:
            cur %=n
        return cur

    for _ in range(m):
        cur = nex(cur)
        cmd=input()
        if d2:
            if cmd == 'drawtwo':
                d2+=1
                players[cur] +=1
                continue
            else:
                players[cur] -=2*d2
                d2 =0
                cur = nex(cur)
        elif d4:
            if cmd == 'drawfour':
                d4+=1
                players[cur] +=1
                continue
            else:
                players[cur] -=4*d4
                d4 =0
                cur = nex(cur)

        players[cur] +=1
        if cmd == 'number':
            pass
        elif cmd =='skip':
            cur=nex(cur)
        elif cmd =='reverse':
            rev +=1
            rev %=2
        elif cmd == 'drawtwo':
            d2 =1
        elif cmd == 'drawfour':
            d4 =1
    print('{} {}'.format(cur+1,players[cur]))

main()
0