結果

問題 No.1943 消えたAGCT(1)
ユーザー マサマサ
提出日時 2022-09-30 22:49:44
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 95,116 KB
最終ジャッジ日時 2024-12-23 00:33:24
合計ジャッジ時間 14,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,844 KB
testcase_01 AC 134 ms
53,680 KB
testcase_02 AC 134 ms
53,896 KB
testcase_03 WA -
testcase_04 AC 134 ms
54,052 KB
testcase_05 WA -
testcase_06 AC 137 ms
53,876 KB
testcase_07 AC 132 ms
53,820 KB
testcase_08 AC 139 ms
54,116 KB
testcase_09 AC 566 ms
94,000 KB
testcase_10 WA -
testcase_11 AC 577 ms
94,248 KB
testcase_12 AC 563 ms
93,916 KB
testcase_13 AC 455 ms
73,960 KB
testcase_14 AC 186 ms
54,196 KB
testcase_15 AC 539 ms
90,976 KB
testcase_16 AC 481 ms
84,044 KB
testcase_17 AC 478 ms
83,608 KB
testcase_18 AC 559 ms
93,824 KB
testcase_19 AC 555 ms
93,924 KB
testcase_20 AC 554 ms
93,964 KB
testcase_21 AC 579 ms
93,620 KB
testcase_22 AC 564 ms
94,336 KB
testcase_23 AC 579 ms
93,544 KB
testcase_24 AC 571 ms
94,044 KB
testcase_25 AC 609 ms
93,864 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
		for (int i = strAry.length - 1; -1 < i ; i--) {
			switch(strAry[i]) {
				case "A":
				case "G":
				case "C":
				case "T":
					flag = true;
					break;
			}
			
			if (flag) {
				System.out.println(i + 1);
				break;
			}
		}
		
		
		sc.close();
		
	}
}
0