結果

問題 No.2600 Avator Height
ユーザー cleanttedcleantted
提出日時 2023-12-08 01:56:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-09-27 02:34:27
合計ジャッジ時間 10,465 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
90,368 KB
testcase_01 AC 229 ms
92,032 KB
testcase_02 AC 230 ms
92,288 KB
testcase_03 AC 232 ms
92,032 KB
testcase_04 AC 226 ms
91,776 KB
testcase_05 AC 233 ms
91,776 KB
testcase_06 AC 227 ms
92,160 KB
testcase_07 AC 232 ms
92,160 KB
testcase_08 AC 233 ms
91,904 KB
testcase_09 AC 226 ms
91,904 KB
testcase_10 AC 236 ms
91,904 KB
testcase_11 AC 231 ms
92,160 KB
testcase_12 AC 233 ms
92,160 KB
testcase_13 AC 229 ms
92,160 KB
testcase_14 AC 235 ms
91,904 KB
testcase_15 AC 230 ms
92,160 KB
testcase_16 AC 233 ms
92,032 KB
testcase_17 AC 236 ms
92,288 KB
testcase_18 AC 228 ms
91,904 KB
testcase_19 AC 229 ms
91,904 KB
testcase_20 AC 226 ms
92,160 KB
testcase_21 AC 232 ms
92,288 KB
testcase_22 AC 232 ms
92,160 KB
testcase_23 AC 230 ms
91,776 KB
testcase_24 AC 221 ms
92,544 KB
testcase_25 AC 235 ms
91,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
import heapq
import itertools
import math
import operator
import sys
from bisect import bisect, bisect_left, bisect_right, insort
from collections import Counter, deque
from fractions import Fraction
from functools import cmp_to_key, lru_cache, partial
from inspect import currentframe
from math import ceil, gcd, log10, pi, sqrt

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
# mod = 10 ** 9 + 7
mod = 998244353
# mod = 1 << 128
# mod = 10 ** 30 + 1
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]

def read_values(): return tuple(map(int, input().split()))
def read_index(): return tuple(map(lambda x: int(x) - 1, input().split()))
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]
def dprint(*values): print(*values, file=sys.stderr)
def dprint2(*values):
    names = {id(v): k for k, v in currentframe().f_back.f_locals.items()}
    dprint(", ".join(f"{names.get(id(value), '???')}={repr(value)}" for value in values))


def main():
    Q = int(input())
    for _ in range(Q):
        N = int(input())
        print(((-1) ** (N % 2 + 1) * 4) % mod)


if __name__ == "__main__":
    main()
0