結果

問題 No.1119 Division 3
ユーザー yukiyuki
提出日時 2020-08-18 09:15:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 330 bytes
コンパイル時間 4,210 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-10-11 23:45:52
合計ジャッジ時間 4,771 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,912 KB
testcase_01 AC 124 ms
41,652 KB
testcase_02 AC 125 ms
41,468 KB
testcase_03 AC 111 ms
39,760 KB
testcase_04 AC 121 ms
41,256 KB
testcase_05 AC 122 ms
40,992 KB
testcase_06 AC 113 ms
40,528 KB
testcase_07 AC 123 ms
41,452 KB
testcase_08 AC 122 ms
40,884 KB
testcase_09 AC 110 ms
39,896 KB
testcase_10 AC 124 ms
41,240 KB
testcase_11 AC 123 ms
41,296 KB
testcase_12 AC 108 ms
40,112 KB
testcase_13 AC 121 ms
41,288 KB
testcase_14 AC 108 ms
39,884 KB
testcase_15 AC 121 ms
40,960 KB
testcase_16 AC 122 ms
41,352 KB
testcase_17 AC 108 ms
39,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

}
0