結果

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

ソースコード

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((403 % M) % 2 == 0){
			System.out.println("odd");
		}else{
			System.out.println("eve");
		}
	}

}
0