結果

問題 No.1943 消えたAGCT(1)
ユーザー ks2mks2m
提出日時 2022-05-20 23:48:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 46,764 KB
最終ジャッジ日時 2024-09-20 10:13:58
合計ジャッジ時間 7,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,392 KB
testcase_01 AC 120 ms
41,376 KB
testcase_02 AC 120 ms
41,512 KB
testcase_03 AC 107 ms
41,256 KB
testcase_04 AC 118 ms
41,392 KB
testcase_05 AC 112 ms
41,352 KB
testcase_06 AC 108 ms
41,436 KB
testcase_07 AC 108 ms
41,316 KB
testcase_08 AC 118 ms
41,272 KB
testcase_09 AC 229 ms
46,484 KB
testcase_10 AC 245 ms
46,244 KB
testcase_11 AC 238 ms
46,372 KB
testcase_12 AC 230 ms
46,288 KB
testcase_13 AC 213 ms
44,480 KB
testcase_14 AC 134 ms
41,536 KB
testcase_15 AC 222 ms
46,268 KB
testcase_16 AC 241 ms
46,220 KB
testcase_17 AC 213 ms
45,996 KB
testcase_18 AC 220 ms
46,384 KB
testcase_19 AC 236 ms
46,532 KB
testcase_20 AC 215 ms
46,652 KB
testcase_21 AC 225 ms
46,156 KB
testcase_22 AC 223 ms
46,224 KB
testcase_23 AC 227 ms
46,764 KB
testcase_24 AC 248 ms
46,368 KB
testcase_25 AC 239 ms
46,316 KB
testcase_26 AC 243 ms
46,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] s = sc.next().toCharArray();
		sc.close();

		for (int i = n - 1; i >= 0; i--) {
			if (s[i] == 'A' || s[i] == 'G' || s[i] == 'C' || s[i] == 'T') {
				System.out.println(i + 1);
				return;
			}
		}
		System.out.println(0);
	}
}
0