結果

問題 No.3029 素因数
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 23:11:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 74,952 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-07-07 05:22:46
合計ジャッジ時間 8,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,948 KB
testcase_01 AC 131 ms
41,116 KB
testcase_02 AC 131 ms
41,388 KB
testcase_03 AC 134 ms
41,232 KB
testcase_04 AC 132 ms
41,232 KB
testcase_05 AC 131 ms
41,236 KB
testcase_06 AC 133 ms
41,136 KB
testcase_07 AC 130 ms
41,256 KB
testcase_08 AC 133 ms
40,964 KB
testcase_09 AC 129 ms
41,212 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 136 ms
40,976 KB
testcase_13 AC 132 ms
41,024 KB
testcase_14 AC 131 ms
41,180 KB
testcase_15 AC 133 ms
40,920 KB
testcase_16 AC 132 ms
41,228 KB
testcase_17 AC 132 ms
41,408 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 128 ms
40,944 KB
testcase_22 AC 134 ms
41,384 KB
testcase_23 AC 117 ms
40,144 KB
testcase_24 WA -
testcase_25 AC 132 ms
41,692 KB
testcase_26 AC 132 ms
41,472 KB
testcase_27 AC 118 ms
40,060 KB
testcase_28 WA -
testcase_29 AC 138 ms
41,096 KB
testcase_30 AC 133 ms
41,036 KB
testcase_31 AC 135 ms
41,152 KB
testcase_32 WA -
testcase_33 AC 131 ms
41,260 KB
testcase_34 AC 132 ms
41,096 KB
testcase_35 AC 132 ms
41,164 KB
testcase_36 AC 132 ms
41,200 KB
testcase_37 AC 133 ms
41,104 KB
testcase_38 AC 133 ms
41,024 KB
testcase_39 AC 131 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static Scanner s=new Scanner(System.in);

	public static void main(String __[]){
		input();
		solve(s.nextInt());
	}

	private static void input(){
	}

	static final int[] v={2,5,17};
	private static void solve(long in){
		if(in==1) {
			System.out.println("even");
			return;
		}
		for(int i:v) {
			if(in%i==0) {
				System.out.println("odd");
				return;
			}
		}
		System.out.println("even");
	}
}
0