結果

問題 No.3029 素因数
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 00:27:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 75,868 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-07-07 14:24:27
合計ジャッジ時間 8,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,052 KB
testcase_01 AC 101 ms
41,128 KB
testcase_02 AC 105 ms
40,828 KB
testcase_03 AC 114 ms
41,088 KB
testcase_04 AC 103 ms
41,120 KB
testcase_05 WA -
testcase_06 AC 114 ms
40,852 KB
testcase_07 AC 115 ms
40,924 KB
testcase_08 AC 103 ms
41,124 KB
testcase_09 AC 113 ms
41,096 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 104 ms
41,084 KB
testcase_13 AC 116 ms
41,004 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 100 ms
41,100 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 120 ms
41,532 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 101 ms
40,864 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 116 ms
41,260 KB
testcase_30 WA -
testcase_31 AC 117 ms
41,212 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 105 ms
41,036 KB
testcase_35 AC 112 ms
41,272 KB
testcase_36 AC 120 ms
41,048 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 115 ms
41,284 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