結果

問題 No.8029 素因数
ユーザー shinwisteria
提出日時 2017-04-01 00:27:14
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 75,868 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-07-07 14:24:27
合計ジャッジ時間 8,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 WA * 20
権限があれば一括ダウンロードができます

ソースコード

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