結果
問題 | No.2240 WAC |
ユーザー | noya2 |
提出日時 | 2023-01-27 00:17:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 702 bytes |
コンパイル時間 | 9,571 ms |
コンパイル使用メモリ | 329,104 KB |
実行使用メモリ | 6,344 KB |
最終ジャッジ日時 | 2024-06-27 14:26:23 |
合計ジャッジ時間 | 9,595 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
/* 入力 validation。WA なら OK。 */ #include "testlib.h" #include<bits/stdc++.h> using namespace std; using ll = long long; const ll Nmin = 1, Nmax = 100000; const ll Mmin = 1, Mmax = 100000; int main(){ registerValidation(); ll N = inf.readLong(Nmin,Nmax); inf.readSpace(); ll M = inf.readLong(Mmin,Mmax); inf.readEoln(); string S = inf.readString(); //inf.readEoln(); readString read '\n' assert((ll)(S.size()) == N + N + M + M); ll W = 0, A = 0, C = 0; for (auto c : S){ if (c == 'W') W++; if (c == 'A') A++; if (c == 'C') C++; } assert(W == N); assert(A == N + M); assert(C == M); inf.readEof(); return 0; }