結果

問題 No.1003 サイコロの実装 (1)
ユーザー 37zigen
提出日時 2020-03-06 15:31:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 73,860 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-10-14 03:32:15
合計ジャッジ時間 6,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		System.out.println(N%6==0?"Yes":"No");
	}
}
0