結果

問題 No.2469 Umbrella Queries
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-02 17:20:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-07-04 13:48:15
合計ジャッジ時間 915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 105 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

Umbrella Queries(2) 想定解

奇数の時は0
偶数の時は、円周角の定理を考えると直径+1点の組み合わせが答えとなる。

"""

import sys
from sys import stdin

T = int(stdin.readline())

#制約チェック
assert 1 <= T <= 10**5

for lp in range(T):
    
    N = int(stdin.readline())
    
    #制約チェック
    assert 3 <= N <= 10**9
    
    if N % 2 == 1:
        print (0)
    else:
        print ((N//2) * (N-2))
0