結果

問題 No.3029 素因数
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 00:25:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-07-07 14:23:56
合計ジャッジ時間 8,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,092 KB
testcase_01 AC 108 ms
41,272 KB
testcase_02 AC 121 ms
40,808 KB
testcase_03 AC 118 ms
40,836 KB
testcase_04 AC 116 ms
41,172 KB
testcase_05 AC 124 ms
41,188 KB
testcase_06 AC 124 ms
41,328 KB
testcase_07 AC 124 ms
40,936 KB
testcase_08 AC 119 ms
41,272 KB
testcase_09 AC 121 ms
41,100 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 103 ms
41,228 KB
testcase_13 AC 122 ms
41,200 KB
testcase_14 AC 119 ms
40,868 KB
testcase_15 AC 128 ms
41,112 KB
testcase_16 AC 111 ms
41,008 KB
testcase_17 AC 120 ms
40,976 KB
testcase_18 WA -
testcase_19 AC 124 ms
40,824 KB
testcase_20 WA -
testcase_21 AC 122 ms
41,272 KB
testcase_22 AC 126 ms
41,268 KB
testcase_23 AC 111 ms
41,216 KB
testcase_24 WA -
testcase_25 AC 110 ms
41,104 KB
testcase_26 AC 121 ms
40,852 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 122 ms
41,212 KB
testcase_30 WA -
testcase_31 AC 124 ms
41,260 KB
testcase_32 AC 124 ms
41,164 KB
testcase_33 AC 106 ms
41,084 KB
testcase_34 AC 105 ms
40,976 KB
testcase_35 AC 118 ms
40,032 KB
testcase_36 AC 122 ms
41,144 KB
testcase_37 AC 124 ms
40,968 KB
testcase_38 WA -
testcase_39 AC 125 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Soinsu {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int M = s.nextInt();
		s.close();
		if(M%2 == 0){
			System.out.println("odd");
		}else{
			System.out.println("even");
		}
	}

}
0