結果

問題 No.1119 Division 3
ユーザー tentententen
提出日時 2020-08-17 23:37:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 332 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,144 KB
最終ジャッジ日時 2024-10-11 11:30:39
合計ジャッジ時間 5,245 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,056 KB
testcase_01 AC 124 ms
40,576 KB
testcase_02 AC 117 ms
39,888 KB
testcase_03 AC 117 ms
40,020 KB
testcase_04 AC 126 ms
40,988 KB
testcase_05 AC 115 ms
39,872 KB
testcase_06 AC 127 ms
41,048 KB
testcase_07 AC 117 ms
39,640 KB
testcase_08 AC 119 ms
39,896 KB
testcase_09 AC 117 ms
39,888 KB
testcase_10 AC 117 ms
39,912 KB
testcase_11 AC 134 ms
41,012 KB
testcase_12 AC 116 ms
39,664 KB
testcase_13 AC 126 ms
40,728 KB
testcase_14 AC 137 ms
41,144 KB
testcase_15 AC 130 ms
40,968 KB
testcase_16 AC 117 ms
39,792 KB
testcase_17 AC 116 ms
39,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		int z = sc.nextInt();
		if (x % 3 == 0 || y % 3 == 0 || z % 3 == 0) {
		    System.out.println("Yes");
		} else {
		    System.out.println("No");
		}
   }

}

0