結果
問題 | No.871 かえるのうた |
ユーザー | d_sei |
提出日時 | 2019-09-05 11:36:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 770 bytes |
コンパイル時間 | 1,010 ms |
コンパイル使用メモリ | 87,572 KB |
実行使用メモリ | 13,768 KB |
最終ジャッジ日時 | 2025-01-03 04:19:21 |
合計ジャッジ時間 | 60,234 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 1 ms
10,624 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | AC | 2 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
10,752 KB |
testcase_06 | AC | 1 ms
10,496 KB |
testcase_07 | AC | 2 ms
10,624 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 8 ms
9,216 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 947 ms
10,496 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 565 ms
10,496 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 1 ms
10,496 KB |
testcase_23 | AC | 2 ms
10,240 KB |
testcase_24 | AC | 2 ms
9,472 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
10,496 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 18 ms
10,112 KB |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | AC | 1,668 ms
5,248 KB |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | TLE | - |
testcase_43 | AC | 1 ms
5,248 KB |
testcase_44 | WA | - |
testcase_45 | AC | 23 ms
5,248 KB |
testcase_46 | AC | 1 ms
5,248 KB |
testcase_47 | AC | 1 ms
5,248 KB |
testcase_48 | AC | 2 ms
10,496 KB |
ソースコード
#include<iostream> #include<algorithm> #include <vector> #include<cmath> #include<iomanip> #include<queue> using namespace std; typedef long long int lont; int main() { lont N, K; cin >> N >> K; vector<lont>veca(N); vector<lont>vecb(N); for (int ia = 0; ia < N; ia++) { cin >> veca.at(ia); } for (int ib = 0; ib < N; ib++) { cin >> vecb.at(ib); } vector<lont>vecc(N); vecc.at(K - 1)++; for(int ie=0;ie<3;ie++){ for (int ic = 0; ic < N; ic++) { for (int id = 0; id < N; id++) { if (vecc.at(ic) && veca.at(ic) - vecb.at(ic) <= veca.at(id) && veca.at(id) <= veca.at(ic) + vecb.at(ic)) { vecc.at(id)++; } } } } int cnt = 0; for (int ih = 0; ih < N; ih++) { if (vecc.at(ih)) { cnt++; } } cout << cnt << endl; }