結果

問題 No.1040 垂直大学
ユーザー yomo3yomo3
提出日時 2020-05-05 05:00:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 78,532 KB
実行使用メモリ 54,592 KB
最終ジャッジ日時 2024-06-25 19:10:07
合計ジャッジ時間 6,313 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,008 KB
testcase_01 AC 139 ms
53,792 KB
testcase_02 AC 141 ms
54,032 KB
testcase_03 AC 138 ms
53,972 KB
testcase_04 AC 139 ms
53,868 KB
testcase_05 AC 139 ms
54,272 KB
testcase_06 AC 140 ms
54,040 KB
testcase_07 AC 142 ms
54,024 KB
testcase_08 AC 138 ms
54,044 KB
testcase_09 AC 137 ms
53,860 KB
testcase_10 AC 136 ms
53,744 KB
testcase_11 AC 140 ms
53,952 KB
testcase_12 AC 137 ms
53,632 KB
testcase_13 AC 140 ms
53,872 KB
testcase_14 AC 138 ms
53,884 KB
testcase_15 AC 135 ms
53,956 KB
testcase_16 AC 144 ms
53,988 KB
testcase_17 AC 145 ms
53,796 KB
testcase_18 AC 139 ms
54,592 KB
testcase_19 AC 139 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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