結果

問題 No.1040 垂直大学
ユーザー numberfromnumberfrom
提出日時 2020-05-19 14:17:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 1,885 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-04-09 22:07:18
合計ジャッジ時間 4,595 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
53,108 KB
testcase_01 WA -
testcase_02 AC 96 ms
52,652 KB
testcase_03 AC 116 ms
53,968 KB
testcase_04 AC 118 ms
53,880 KB
testcase_05 AC 107 ms
54,256 KB
testcase_06 AC 103 ms
52,964 KB
testcase_07 AC 102 ms
52,916 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 108 ms
53,876 KB
testcase_11 AC 105 ms
52,864 KB
testcase_12 AC 111 ms
53,888 KB
testcase_13 AC 108 ms
54,100 KB
testcase_14 AC 104 ms
54,040 KB
testcase_15 AC 109 ms
53,876 KB
testcase_16 AC 105 ms
53,896 KB
testcase_17 AC 98 ms
52,828 KB
testcase_18 AC 105 ms
54,288 KB
testcase_19 AC 100 ms
52,884 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