結果

問題 No.1951 消えたAGCT(2)
ユーザー tentententen
提出日時 2023-06-29 17:13:10
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,318 bytes
コンパイル時間 4,324 ms
コンパイル使用メモリ 89,696 KB
実行使用メモリ 62,608 KB
最終ジャッジ日時 2023-09-20 12:28:51
合計ジャッジ時間 9,869 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,164 KB
testcase_01 AC 44 ms
49,520 KB
testcase_02 AC 45 ms
49,512 KB
testcase_03 AC 44 ms
49,948 KB
testcase_04 AC 45 ms
49,452 KB
testcase_05 AC 45 ms
49,520 KB
testcase_06 AC 45 ms
49,956 KB
testcase_07 AC 45 ms
49,500 KB
testcase_08 AC 151 ms
57,984 KB
testcase_09 AC 166 ms
58,464 KB
testcase_10 AC 163 ms
58,080 KB
testcase_11 AC 157 ms
58,272 KB
testcase_12 AC 135 ms
55,440 KB
testcase_13 AC 77 ms
51,540 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