結果

問題 No.1040 垂直大学
ユーザー tentententen
提出日時 2020-12-09 14:15:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 44,596 KB
最終ジャッジ日時 2024-09-19 01:09:17
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,480 KB
testcase_01 AC 119 ms
44,596 KB
testcase_02 AC 102 ms
41,156 KB
testcase_03 AC 113 ms
41,292 KB
testcase_04 AC 116 ms
40,928 KB
testcase_05 AC 113 ms
41,496 KB
testcase_06 AC 125 ms
41,156 KB
testcase_07 AC 135 ms
41,256 KB
testcase_08 AC 125 ms
41,460 KB
testcase_09 AC 122 ms
41,504 KB
testcase_10 AC 122 ms
41,380 KB
testcase_11 AC 116 ms
41,224 KB
testcase_12 AC 121 ms
44,348 KB
testcase_13 AC 115 ms
41,312 KB
testcase_14 AC 114 ms
41,292 KB
testcase_15 AC 101 ms
41,316 KB
testcase_16 AC 114 ms
41,248 KB
testcase_17 AC 116 ms
41,444 KB
testcase_18 AC 103 ms
41,372 KB
testcase_19 AC 117 ms
41,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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