結果

問題 No.1943 消えたAGCT(1)
ユーザー マサマサ
提出日時 2022-09-30 22:55:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 1,854 ms
コンパイル使用メモリ 73,864 KB
実行使用メモリ 93,832 KB
最終ジャッジ日時 2024-06-02 06:26:14
合計ジャッジ時間 12,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,212 KB
testcase_01 AC 108 ms
52,772 KB
testcase_02 AC 117 ms
54,032 KB
testcase_03 AC 106 ms
52,716 KB
testcase_04 AC 110 ms
52,560 KB
testcase_05 AC 119 ms
53,892 KB
testcase_06 AC 109 ms
52,684 KB
testcase_07 AC 123 ms
53,836 KB
testcase_08 AC 110 ms
54,144 KB
testcase_09 AC 496 ms
92,984 KB
testcase_10 AC 533 ms
93,240 KB
testcase_11 AC 543 ms
93,392 KB
testcase_12 AC 509 ms
93,028 KB
testcase_13 AC 391 ms
72,344 KB
testcase_14 AC 168 ms
54,540 KB
testcase_15 AC 495 ms
92,496 KB
testcase_16 AC 435 ms
84,420 KB
testcase_17 AC 434 ms
83,936 KB
testcase_18 AC 512 ms
93,168 KB
testcase_19 AC 513 ms
92,712 KB
testcase_20 AC 488 ms
93,796 KB
testcase_21 AC 504 ms
92,544 KB
testcase_22 AC 511 ms
93,832 KB
testcase_23 AC 495 ms
93,704 KB
testcase_24 AC 528 ms
93,416 KB
testcase_25 AC 523 ms
93,112 KB
testcase_26 AC 537 ms
93,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int num = sc.nextInt();
		String[] strAry = (sc.next()).split("");
		
		boolean flag = false;
		int i = strAry.length - 1;
		for ( ; -1 < i ; i--) {
			switch(strAry[i]) {
				case "A":
				case "G":
				case "C":
				case "T":
					flag = true;
					break;
			}
			
			if (flag) {
				break;
			}
		}
		
		System.out.println(i + 1);
		
		sc.close();
		
	}
}
0