結果

問題 No.2600 Avator Height
ユーザー vwxyzvwxyz
提出日時 2024-07-17 08:17:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,223 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-17 08:18:23
合計ジャッジ時間 32,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 1,145 ms
10,624 KB
testcase_02 AC 1,187 ms
10,624 KB
testcase_03 AC 1,223 ms
10,624 KB
testcase_04 AC 1,198 ms
10,624 KB
testcase_05 AC 1,207 ms
10,624 KB
testcase_06 AC 1,184 ms
10,624 KB
testcase_07 AC 1,207 ms
10,752 KB
testcase_08 AC 1,198 ms
10,624 KB
testcase_09 AC 1,217 ms
10,624 KB
testcase_10 AC 1,197 ms
10,624 KB
testcase_11 AC 1,180 ms
10,624 KB
testcase_12 AC 1,189 ms
10,624 KB
testcase_13 AC 1,175 ms
10,624 KB
testcase_14 AC 1,205 ms
10,624 KB
testcase_15 AC 1,184 ms
10,624 KB
testcase_16 AC 1,189 ms
10,624 KB
testcase_17 AC 1,155 ms
10,624 KB
testcase_18 AC 1,186 ms
10,624 KB
testcase_19 AC 1,212 ms
10,752 KB
testcase_20 AC 1,189 ms
10,624 KB
testcase_21 AC 1,152 ms
10,624 KB
testcase_22 AC 1,177 ms
10,624 KB
testcase_23 AC 1,194 ms
10,624 KB
testcase_24 AC 1,180 ms
10,752 KB
testcase_25 AC 1,169 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for t in range(T):
    N=int(input())
    ans=[998244349,4][N%2]
    print(ans)
0