結果

問題 No.2521 Don't be Same
ユーザー MasKoaTSMasKoaTS
提出日時 2023-10-21 17:10:29
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 678 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,536 KB
平均クエリ数 9.61
最終ジャッジ日時 2024-09-21 18:25:16
合計ジャッジ時間 6,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
68,576 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 110 ms
68,968 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 107 ms
68,712 KB
testcase_11 AC 114 ms
68,328 KB
testcase_12 AC 110 ms
68,584 KB
testcase_13 AC 111 ms
68,584 KB
testcase_14 AC 111 ms
68,712 KB
testcase_15 AC 109 ms
68,328 KB
testcase_16 AC 112 ms
68,704 KB
testcase_17 AC 109 ms
68,320 KB
testcase_18 AC 110 ms
68,576 KB
testcase_19 AC 111 ms
68,448 KB
testcase_20 RE -
testcase_21 AC 112 ms
69,608 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = list(map(int, input().split()))

def input_judge(a):
    lis = list(map(str, input().split()))
    if(lis[0] == 'A'):
        x, y = int(lis[1]) - 1, int(lis[2])
        a[x] -= y
    elif(lis[0] == 'B'):
        a[0] = a[1] = 0
    else:
        exit(0)

if(min(a) & 1 and max(a) == min(a) + 1):
    print("Second")
    input_judge(a)
else:
    print("First")

while(True):
    if(a[0] == a[1]):
        print('B')
        a[0] = a[1] = 0
    else:
        k = (a[1] < a[0])
        if(a[k] & 1):
            c = a[k ^ 1] - (a[k] + 1)
        else:
            c = a[k ^ 1] - (a[k] - 1)
        a[k ^ 1] -= c
        print('A', str((k ^ 1) + 1), str(c))
    input_judge(a)
0