結果

問題 No.1943 消えたAGCT(1)
ユーザー マサマサ
提出日時 2022-09-30 22:55:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 84,884 KB
最終ジャッジ日時 2024-12-23 00:39:56
合計ジャッジ時間 14,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,660 KB
testcase_01 AC 128 ms
41,108 KB
testcase_02 AC 116 ms
40,076 KB
testcase_03 AC 128 ms
41,164 KB
testcase_04 AC 126 ms
40,992 KB
testcase_05 AC 128 ms
41,096 KB
testcase_06 AC 131 ms
40,200 KB
testcase_07 AC 131 ms
41,144 KB
testcase_08 AC 131 ms
41,236 KB
testcase_09 AC 582 ms
83,500 KB
testcase_10 AC 583 ms
84,884 KB
testcase_11 AC 584 ms
84,052 KB
testcase_12 AC 574 ms
83,540 KB
testcase_13 AC 478 ms
64,700 KB
testcase_14 AC 189 ms
43,024 KB
testcase_15 AC 581 ms
82,432 KB
testcase_16 AC 494 ms
73,052 KB
testcase_17 AC 482 ms
72,716 KB
testcase_18 AC 557 ms
83,756 KB
testcase_19 AC 579 ms
83,760 KB
testcase_20 AC 559 ms
83,900 KB
testcase_21 AC 557 ms
83,488 KB
testcase_22 AC 563 ms
83,420 KB
testcase_23 AC 552 ms
84,884 KB
testcase_24 AC 587 ms
84,480 KB
testcase_25 AC 589 ms
83,672 KB
testcase_26 AC 581 ms
83,912 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