結果

問題 No.1119 Division 3
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-09 09:59:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 491 bytes
コンパイル時間 3,592 ms
コンパイル使用メモリ 78,104 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-07-06 15:12:58
合計ジャッジ時間 5,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,100 KB
testcase_01 AC 108 ms
53,844 KB
testcase_02 AC 98 ms
52,956 KB
testcase_03 AC 97 ms
52,916 KB
testcase_04 AC 104 ms
53,652 KB
testcase_05 AC 110 ms
53,940 KB
testcase_06 AC 101 ms
53,372 KB
testcase_07 AC 110 ms
54,208 KB
testcase_08 AC 109 ms
53,816 KB
testcase_09 AC 108 ms
53,828 KB
testcase_10 AC 110 ms
53,992 KB
testcase_11 AC 113 ms
54,008 KB
testcase_12 AC 111 ms
53,892 KB
testcase_13 AC 110 ms
54,060 KB
testcase_14 AC 95 ms
52,712 KB
testcase_15 AC 108 ms
54,044 KB
testcase_16 AC 105 ms
54,092 KB
testcase_17 AC 90 ms
52,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/1119
public class Division3_1119 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);
    boolean result = false;
    for (int i = 0; i < 3; i++) {
      if (Integer.parseInt(sc.next()) % 3 == 0) {
        result = true;
      }
    }
    if (result) {
      System.out.println("Yes");
    } else {
      System.out.println("No");
    }

  }
}
0