結果

問題 No.3023 素数判定するだけ
ユーザー shinwisteriashinwisteria
提出日時 2017-03-31 23:09:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 548 bytes
コンパイル時間 3,852 ms
コンパイル使用メモリ 79,720 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-10-04 20:05:53
合計ジャッジ時間 9,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,792 KB
testcase_01 AC 98 ms
52,728 KB
testcase_02 AC 117 ms
54,152 KB
testcase_03 AC 121 ms
53,980 KB
testcase_04 AC 119 ms
54,128 KB
testcase_05 AC 114 ms
53,852 KB
testcase_06 AC 117 ms
54,120 KB
testcase_07 AC 104 ms
53,168 KB
testcase_08 AC 100 ms
53,040 KB
testcase_09 AC 115 ms
53,888 KB
testcase_10 AC 110 ms
52,608 KB
testcase_11 AC 111 ms
54,116 KB
testcase_12 AC 114 ms
53,856 KB
testcase_13 AC 106 ms
52,876 KB
testcase_14 AC 113 ms
54,260 KB
testcase_15 AC 113 ms
54,264 KB
testcase_16 AC 122 ms
54,276 KB
testcase_17 AC 117 ms
54,304 KB
testcase_18 AC 117 ms
54,352 KB
testcase_19 AC 118 ms
54,076 KB
testcase_20 AC 112 ms
53,880 KB
testcase_21 AC 108 ms
53,948 KB
testcase_22 AC 132 ms
54,024 KB
testcase_23 AC 118 ms
54,144 KB
testcase_24 AC 123 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class SosuHantei {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();
		String str = "abcdefg";
		String yn = "YES";
		ArrayList<Integer> list = new ArrayList<>();
		list.add(N);
		list.add(str.length());
		if(N == str.indexOf("b")){
			yn = "NO";
		}

		while(list.size() < N){
			int i = list.size();
			if(N % i == str.indexOf("a")){
				yn = "NO";
				break;
			}
			list.add(i);
		}
		System.out.println(yn);

	}

}
0