結果

問題 No.3029 素因数
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 00:27:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 7,808 ms
コンパイル使用メモリ 77,164 KB
実行使用メモリ 39,880 KB
最終ジャッジ日時 2023-09-21 21:01:21
合計ジャッジ時間 11,046 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,380 KB
testcase_01 AC 121 ms
39,840 KB
testcase_02 AC 120 ms
39,844 KB
testcase_03 AC 118 ms
39,764 KB
testcase_04 AC 121 ms
39,652 KB
testcase_05 WA -
testcase_06 AC 117 ms
39,512 KB
testcase_07 AC 118 ms
39,632 KB
testcase_08 AC 120 ms
39,552 KB
testcase_09 AC 118 ms
39,796 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 122 ms
39,204 KB
testcase_13 AC 119 ms
39,608 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 119 ms
39,392 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 117 ms
39,216 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 121 ms
39,284 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 119 ms
39,460 KB
testcase_30 WA -
testcase_31 AC 117 ms
39,456 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 122 ms
39,548 KB
testcase_35 AC 119 ms
39,604 KB
testcase_36 AC 119 ms
39,188 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 125 ms
39,288 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("eve");
		}
	}

}
0