結果

問題 No.1951 消えたAGCT(2)
ユーザー tentententen
提出日時 2023-06-29 17:13:10
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,318 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 97,852 KB
実行使用メモリ 65,732 KB
最終ジャッジ日時 2024-07-06 07:49:11
合計ジャッジ時間 9,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,296 KB
testcase_01 AC 46 ms
50,120 KB
testcase_02 AC 45 ms
50,144 KB
testcase_03 AC 44 ms
50,040 KB
testcase_04 AC 43 ms
50,560 KB
testcase_05 AC 44 ms
50,236 KB
testcase_06 AC 43 ms
50,408 KB
testcase_07 AC 43 ms
50,336 KB
testcase_08 AC 141 ms
57,556 KB
testcase_09 AC 136 ms
57,056 KB
testcase_10 AC 138 ms
57,540 KB
testcase_11 AC 138 ms
57,288 KB
testcase_12 AC 117 ms
55,028 KB
testcase_13 AC 71 ms
51,376 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayList<Character> list = new ArrayList<>();
        int[] counts = new int[26];
        for (char c : sc.next().toCharArray()) {
            list.add(c);
            counts[c - 'A']++;
        }
        String agct = "AGCT";
        int[] idxes = new int[4];
        for (int i = 0; i < 4; i++) {
            idxes[i] = agct.charAt(i) - 'A';
        }
        int ans = 0;
        int plus = 0;
        while (true) {
            int current = 0;
            for (int x : idxes) {
                current += counts[(x + plus) % 26];
            }
            if (current == 0) {
                break;
            }
            char c = list.get(current - 1);
            counts[c - 'A']--;
            list.remove(current - 1);
            plus += 26 - counts[c - 'A'] % 26;
            plus %= 26;
            ans++;
        }
        System.out.println(ans);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0