結果

問題 No.1003 サイコロの実装 (1)
ユーザー waganecowaganeco
提出日時 2020-03-13 10:07:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 3,627 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-11-21 16:07:51
合計ジャッジ時間 7,910 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,920 KB
testcase_01 AC 107 ms
52,812 KB
testcase_02 AC 118 ms
53,672 KB
testcase_03 AC 118 ms
53,860 KB
testcase_04 AC 120 ms
53,864 KB
testcase_05 AC 118 ms
53,884 KB
testcase_06 AC 118 ms
53,916 KB
testcase_07 AC 120 ms
53,788 KB
testcase_08 AC 117 ms
54,020 KB
testcase_09 AC 119 ms
53,876 KB
testcase_10 AC 119 ms
53,684 KB
testcase_11 AC 118 ms
53,940 KB
testcase_12 AC 120 ms
53,940 KB
testcase_13 AC 118 ms
53,944 KB
testcase_14 AC 117 ms
53,708 KB
testcase_15 AC 121 ms
54,028 KB
testcase_16 AC 117 ms
54,008 KB
testcase_17 AC 118 ms
53,824 KB
testcase_18 AC 119 ms
53,908 KB
testcase_19 AC 119 ms
53,892 KB
testcase_20 AC 118 ms
53,864 KB
testcase_21 AC 121 ms
53,812 KB
testcase_22 AC 117 ms
53,836 KB
testcase_23 AC 118 ms
53,848 KB
testcase_24 AC 117 ms
53,828 KB
testcase_25 AC 118 ms
53,820 KB
testcase_26 AC 119 ms
53,876 KB
testcase_27 AC 108 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No1003 {

	public static void main(String[] args) {
		
		int n;
		Scanner sc = new Scanner(System.in);
		n = Integer.parseInt(sc.next());
		sc.close();
		
		if (n % 6 == 0) {
			System.out.println("Yes");
		}
		else{
			System.out.println("No");
		}
		
	}

}
0