結果

問題 No.1040 垂直大学
ユーザー numberfromnumberfrom
提出日時 2020-05-19 14:17:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 74,012 KB
実行使用メモリ 56,452 KB
最終ジャッジ日時 2024-10-01 22:40:06
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,228 KB
testcase_01 WA -
testcase_02 AC 134 ms
54,104 KB
testcase_03 AC 131 ms
54,048 KB
testcase_04 AC 131 ms
54,164 KB
testcase_05 AC 132 ms
54,384 KB
testcase_06 AC 130 ms
54,152 KB
testcase_07 AC 130 ms
54,348 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 128 ms
54,252 KB
testcase_11 AC 128 ms
53,864 KB
testcase_12 AC 129 ms
53,892 KB
testcase_13 AC 127 ms
53,912 KB
testcase_14 AC 135 ms
54,268 KB
testcase_15 AC 126 ms
54,128 KB
testcase_16 AC 131 ms
54,152 KB
testcase_17 AC 131 ms
54,236 KB
testcase_18 AC 135 ms
54,224 KB
testcase_19 AC 128 ms
54,304 KB
権限があれば一括ダウンロードができます

ソースコード

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 % 90 == 0){
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}

}
0