結果

問題 No.192 合成数
ユーザー sasakkisasakki
提出日時 2016-04-11 17:18:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-10-07 15:37:47
合計ジャッジ時間 6,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,956 KB
testcase_01 AC 112 ms
54,120 KB
testcase_02 AC 116 ms
54,004 KB
testcase_03 AC 114 ms
53,968 KB
testcase_04 AC 109 ms
54,044 KB
testcase_05 AC 109 ms
53,968 KB
testcase_06 AC 109 ms
54,068 KB
testcase_07 AC 112 ms
53,992 KB
testcase_08 AC 131 ms
53,940 KB
testcase_09 AC 114 ms
53,916 KB
testcase_10 AC 112 ms
53,744 KB
testcase_11 AC 110 ms
54,140 KB
testcase_12 AC 107 ms
53,904 KB
testcase_13 AC 110 ms
53,976 KB
testcase_14 AC 114 ms
53,684 KB
testcase_15 AC 114 ms
53,896 KB
testcase_16 AC 94 ms
52,772 KB
testcase_17 WA -
testcase_18 AC 112 ms
53,856 KB
testcase_19 AC 98 ms
53,016 KB
testcase_20 AC 112 ms
54,060 KB
testcase_21 AC 113 ms
53,944 KB
testcase_22 AC 109 ms
53,996 KB
testcase_23 AC 116 ms
54,064 KB
testcase_24 AC 102 ms
52,988 KB
testcase_25 AC 100 ms
53,020 KB
testcase_26 AC 99 ms
53,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);

		int N = Integer.parseInt(sc.next());

		for(int i = N - 100; i <= N + 100; i++){
			if(1 <= i && i <= 3){
				continue;
			}
			else if(i % 2 == 1 && ( i % 3 == 0 || i % 5 == 0) ){
				continue;
			}
			else{
				System.out.println(i);
				break;
			}	   
		}
	}
}
0