結果

問題 No.1943 消えたAGCT(1)
ユーザー mnmmnm
提出日時 2022-05-24 19:51:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 560 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 14:30:18
合計ジャッジ時間 20,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cmath>

#define rep(i,n) for(i=0; i<n; ++i)
#define in(a) cin >> a
#define out(a,b) cout << a << b
using namespace std;
using lint = long long;

int main(void){
    int i, j, n, m, k, cnt = 0;
    string s, u="AGCT";
    char let;
    int c=0;
    in(n);
    in(s);
    rep(i,n){
        rep(j,4)    c+=s[i]==u[j];
    }
    while(c){
        cnt++;
        let = s[c-1];
        s.erase(c-1,1);
        rep(i,4)    c-=let==u[i];
    }
    out(cnt,endl);

    return 0;
}

0