結果
問題 | No.2521 Don't be Same |
ユーザー | MasKoaTS |
提出日時 | 2023-10-27 13:12:15 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,464 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 103,528 KB |
平均クエリ数 | 2.61 |
最終ジャッジ日時 | 2024-09-25 13:00:39 |
合計ジャッジ時間 | 7,978 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 194 ms
102,828 KB |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | AC | 187 ms
102,632 KB |
testcase_11 | AC | 187 ms
102,508 KB |
testcase_12 | AC | 186 ms
102,836 KB |
testcase_13 | AC | 188 ms
102,504 KB |
testcase_14 | AC | 193 ms
103,008 KB |
testcase_15 | AC | 192 ms
102,632 KB |
testcase_16 | AC | 190 ms
103,264 KB |
testcase_17 | AC | 191 ms
102,752 KB |
testcase_18 | AC | 189 ms
103,352 KB |
testcase_19 | AC | 188 ms
102,752 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
ソースコード
import itertools as iter import collections as coll import heapq as hq import bisect as bis from decimal import Decimal as dec from functools import cmp_to_key import math import sys #import pypyjit #pypyjit.set_param('max_unroll_recursion=-1') sys.setrecursionlimit(10 ** 6) inp = sys.stdin.readline input = lambda : inp()[:-1] getN = lambda : int(inp()) getNs = lambda : map(int, inp().split()) getList = lambda : list(map(int, inp().split())) getStrs = lambda n : [input() for _ in [0] * n] getEdges = lambda n : [[x - 1 for x in getNs()] for _ in [0] * n] def yexit(): print("Yes"); exit(0) def nexit(): print("No"); exit(0) pi = 3.141592653589793 mod = 1000000007 MOD = 998244353 INF = 4611686018427387903 dx = [1, 0, -1, 0]; dy = [0, 1, 0, -1] #di = coll.defaultdict(int) """ Main Code """ a = getList() def input_judge(a): lis = list(map(str, inp().split())) if(lis[0] == 'A'): i, x = int(lis[1]) - 1, int(lis[2]) a[i] -= x elif(lis[0] == 'B'): a[0] = a[1] = 0 else: exit(0) k = (a[0] > a[1]) if(a[k] + 1 == a[k ^ 1]): print("Second", flush = True) input_judge(a) else: print("First", flush = True) while(True): if(a[0] == a[1]): print('B', flush = True) else: k = (a[0] > a[1]) x = a[k ^ 1] if(a[k] > 0): x = a[k ^ 1] - a[k] - 1 if(a[k] & 1) else a[k ^ 1] - a[k] + 1 print('A', (k ^ 1) + 1, x, flush = True) input_judge(a)