結果

問題 No.1003 サイコロの実装 (1)
ユーザー usa1104_1224usa1104_1224
提出日時 2020-03-06 21:25:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-10-14 04:00:40
合計ジャッジ時間 7,047 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,288 KB
testcase_01 AC 125 ms
41,140 KB
testcase_02 AC 130 ms
41,480 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 126 ms
41,292 KB
testcase_08 AC 126 ms
41,116 KB
testcase_09 AC 133 ms
41,468 KB
testcase_10 AC 127 ms
41,464 KB
testcase_11 AC 127 ms
41,000 KB
testcase_12 AC 123 ms
41,436 KB
testcase_13 AC 128 ms
41,352 KB
testcase_14 AC 122 ms
41,552 KB
testcase_15 AC 126 ms
41,264 KB
testcase_16 AC 131 ms
41,140 KB
testcase_17 AC 124 ms
41,644 KB
testcase_18 AC 125 ms
41,292 KB
testcase_19 AC 133 ms
41,440 KB
testcase_20 AC 129 ms
41,692 KB
testcase_21 AC 128 ms
41,300 KB
testcase_22 AC 129 ms
41,360 KB
testcase_23 AC 130 ms
41,288 KB
testcase_24 AC 125 ms
41,132 KB
testcase_25 AC 125 ms
41,108 KB
testcase_26 AC 120 ms
41,264 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String args[] ){
		Scanner sc =new Scanner(System.in);
		int N = sc.nextInt();
		if(N<6) {
			System.out.println("Yes");
		}else {
			if(N % 6 == 0) {
				System.out.println("Yes");
			}else {
				System.out.println("No");
			}
		}
	}

}
0