結果
問題 | No.145 yukiover |
ユーザー | Onju |
提出日時 | 2015-02-06 00:05:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,554 bytes |
コンパイル時間 | 594 ms |
コンパイル使用メモリ | 58,588 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 09:00:56 |
合計ジャッジ時間 | 3,625 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
ソースコード
#include <iostream> #include <algorithm> #include <climits> #include <cstring> #include <string> #define N_MAX 10000 using namespace std; int main() { int N, ans = 0; char S[N_MAX]; cin >> N >> S; //ごり押してみる for (int i = 0; i < N; ++i) if (S[i] > 'y') { ++ans; S[i] = 0; } for (int i = 0; i < N; ++i) if (S[i] == 'y') for (int j = 0; j < N; ++j) if (S[j] > 'u') { ++ans; S[j] = S[i] = 0; } for (int i = 0; i < N; ++i) if (S[i] == 'y') for (int j = 0; j < N; ++j) if (S[j] == 'u') for (int k = 0; k < N; ++k) if (k == i || k == j) continue; else if (S[k] > 'k') { ++ans; S[k] = S[j] = S[i] = 0; } for (int i = 0; i < N; ++i) if (S[i] == 'y') for (int j = 0; j < N; ++j) if (S[j] == 'u') for (int k = 0; k < N; ++k) if (S[k] == 'k') for (int l = 0; l < N; ++l) if (l == i || l == j || l == k) continue; else if (S[l] > 'i') { ++ans; S[l] = S[k] = S[j] = S[i] = 0; } for (int i = 0; i < N; ++i) { if (S[i] == 'y') for (int j = 0; j < N; ++j) if (S[j] == 'u') for (int k = 0; k < N; ++k) if (S[k] == 'k') for (int l = 0; l < N; ++l) if (S[l] == 'i') for (int m = 0; m < N; ++m) if (m == i || m == j || m == k || m == l) continue; else if (S[m]) { S[m] = S[l] = S[k] = S[j] = S[i] = 0; ++ans; } } cout << ans; return 0; }