結果
| 問題 | 
                            No.1951 消えたAGCT(2)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             tenten
                         | 
                    
| 提出日時 | 2023-06-29 17:13:10 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 14 TLE * 1 -- * 13 | 
ソースコード
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();
    }
    
}
            
            
            
        
            
tenten