結果
問題 | No.250 atetubouのzetubou |
ユーザー | tcltk |
提出日時 | 2021-01-16 12:42:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,043 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 90,368 KB |
最終ジャッジ日時 | 2024-11-27 12:36:57 |
合計ジャッジ時間 | 5,125 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 140 ms
88,704 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 135 ms
88,576 KB |
testcase_21 | AC | 138 ms
88,832 KB |
ソースコード
#region Header #!/usr/bin/env python3 # from typing import * import sys import io import math import collections import decimal import itertools from queue import PriorityQueue import bisect import heapq def input(): return sys.stdin.readline()[:-1] sys.setrecursionlimit(1000000) #endregion # _INPUT = """3 # 58 62 1000 # 12 34 56 # 987 65 1234 # """ # sys.stdin = io.StringIO(_INPUT) def f(X, D): if D == 1: return 1 elif D == 2: return X+1 else: return f(X*(X+1)//2, D - 1) def solve(D, X, T): if D == 1: v = 1 else: for d in range(D-1): X = X*(X+1)//2 if X > T: return False v = X return (v <= T) def main(): Q = int(input()) for _ in range(Q): D, X, T = map(int, input().split()) result = solve(D, X, T) if result: print('AC') else: print('ZETUBOU') if __name__ == '__main__': main()