結果

問題 No.1943 消えたAGCT(1)
ユーザー マサマサ
提出日時 2022-09-30 22:49:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 75,220 KB
実行使用メモリ 84,720 KB
最終ジャッジ日時 2024-06-02 06:20:47
合計ジャッジ時間 14,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,396 KB
testcase_01 AC 131 ms
41,208 KB
testcase_02 AC 120 ms
40,136 KB
testcase_03 WA -
testcase_04 AC 133 ms
41,124 KB
testcase_05 WA -
testcase_06 AC 134 ms
41,124 KB
testcase_07 AC 134 ms
41,312 KB
testcase_08 AC 132 ms
41,108 KB
testcase_09 AC 583 ms
83,916 KB
testcase_10 WA -
testcase_11 AC 581 ms
83,912 KB
testcase_12 AC 572 ms
84,208 KB
testcase_13 AC 457 ms
64,500 KB
testcase_14 AC 184 ms
42,512 KB
testcase_15 AC 563 ms
82,976 KB
testcase_16 AC 483 ms
73,260 KB
testcase_17 AC 481 ms
73,360 KB
testcase_18 AC 560 ms
84,460 KB
testcase_19 AC 588 ms
84,260 KB
testcase_20 AC 568 ms
84,204 KB
testcase_21 AC 575 ms
84,228 KB
testcase_22 AC 561 ms
84,240 KB
testcase_23 AC 573 ms
84,208 KB
testcase_24 AC 586 ms
84,312 KB
testcase_25 AC 578 ms
84,372 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