結果

問題 No.1003 サイコロの実装 (1)
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-12 22:11:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 4,142 ms
コンパイル使用メモリ 78,220 KB
実行使用メモリ 54,648 KB
最終ジャッジ日時 2024-11-21 11:43:08
合計ジャッジ時間 8,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,428 KB
testcase_01 AC 129 ms
54,280 KB
testcase_02 AC 129 ms
54,216 KB
testcase_03 AC 128 ms
54,016 KB
testcase_04 AC 128 ms
54,080 KB
testcase_05 AC 126 ms
53,836 KB
testcase_06 AC 128 ms
54,436 KB
testcase_07 AC 129 ms
54,340 KB
testcase_08 AC 128 ms
53,828 KB
testcase_09 AC 129 ms
54,300 KB
testcase_10 AC 129 ms
53,952 KB
testcase_11 AC 127 ms
54,020 KB
testcase_12 AC 130 ms
53,836 KB
testcase_13 AC 129 ms
54,200 KB
testcase_14 AC 138 ms
53,944 KB
testcase_15 AC 130 ms
53,940 KB
testcase_16 AC 128 ms
54,448 KB
testcase_17 AC 126 ms
54,060 KB
testcase_18 AC 129 ms
54,144 KB
testcase_19 AC 130 ms
53,768 KB
testcase_20 AC 130 ms
54,648 KB
testcase_21 AC 128 ms
54,452 KB
testcase_22 AC 129 ms
54,148 KB
testcase_23 AC 130 ms
54,072 KB
testcase_24 AC 130 ms
53,828 KB
testcase_25 AC 129 ms
54,220 KB
testcase_26 AC 126 ms
54,088 KB
testcase_27 AC 129 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/1003
public class DiceCreate1003 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int n = Integer.parseInt(sc.next());

    if(n % 6 == 0) {
      System.out.println("Yes");
    }else {
      System.out.println("No");
    }
  }
}
0