結果
問題 | No.1555 Constructed Balancing Sequence |
ユーザー | chineristAC |
提出日時 | 2021-01-06 10:20:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 758 bytes |
コンパイル時間 | 6,834 ms |
コンパイル使用メモリ | 256,692 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-22 19:28:39 |
合計ジャッジ時間 | 8,464 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
ソースコード
#include"testlib.h" #include<iostream> #include<vector> #include<string> #include<map> #include<set> #include<queue> #include<algorithm> #include<cmath> #include<iomanip> #include<random> #include<stdio.h> using namespace std; typedef long long ll; const long long MIN_N = 2; const long long MAX_N = 1500; const long long MIN_K = 1; const long long MAX_K = 1500; void validate(){ long long N = inf.readLong(MIN_N,MAX_N,"N"); inf.readSpace(); long long K = inf.readLong(MIN_K,MAX_K,"K"); inf.readEoln(); for (long long i=0;i<N;i++){ inf.readLong(-K,K); if (i!=N-1){ inf.readSpace(); } else{ inf.readEoln(); } } inf.readEof(); } int main(int argc, char* argv[]){ registerValidation(argc,argv); validate(); }