結果
問題 | No.2469 Umbrella Queries |
ユーザー | 👑 tute7627 |
提出日時 | 2023-09-02 00:45:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 177 ms / 2,000 ms |
コード長 | 292 bytes |
コンパイル時間 | 1,943 ms |
コンパイル使用メモリ | 201,132 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-04 13:48:24 |
合計ジャッジ時間 | 2,608 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 177 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int T; cin >> T; assert(1 <= T && T <= 1e5); while(T--){ long long N; cin >> N; assert(3 <= N && N <= 1e9); if(N % 2 == 1){ cout << 0 << endl; } else{ cout << N * (N / 2 - 1) << endl; } } }