結果

問題 No.1943 消えたAGCT(1)
ユーザー yorry2101yorry2101
提出日時 2023-09-15 16:00:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 704 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 68,864 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 18:36:24
合計ジャッジ時間 20,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 18 ms
5,376 KB
testcase_10 AC 14 ms
5,376 KB
testcase_11 AC 15 ms
5,376 KB
testcase_12 TLE -
testcase_13 AC 539 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 1,961 ms
5,376 KB
testcase_16 AC 1,262 ms
5,376 KB
testcase_17 AC 1,412 ms
5,376 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 883 ms
5,376 KB
testcase_23 AC 886 ms
5,376 KB
testcase_24 AC 15 ms
5,376 KB
testcase_25 AC 15 ms
5,376 KB
testcase_26 AC 14 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main(void){
    int n;
    cin >> n;
    string s, agct = "AGCT";
    cin >> s;
    int c = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 4; j++) {
            if (s[i] == agct[j]) {
                c++;
                break;
            }
        }
    }
    
    int cnt = 0;
    bool b;
    while (c != 0) {
        b = false;
        for (int j = 0; j < 4; j++) {
            if (s[c-1] == agct[j]) {
                s.erase(c-1, 1);
                b = true;
                c--;
                break;
            }
        }
        if (b == false) s.erase(c-1, 1);
        cnt++;
    }
    cout << cnt << endl;
}
0