結果

問題 No.1040 垂直大学
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-07 19:38:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 3,049 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-07-04 12:37:50
合計ジャッジ時間 6,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,920 KB
testcase_01 AC 101 ms
39,680 KB
testcase_02 AC 116 ms
41,052 KB
testcase_03 AC 113 ms
40,684 KB
testcase_04 AC 115 ms
40,956 KB
testcase_05 AC 105 ms
40,096 KB
testcase_06 AC 112 ms
40,768 KB
testcase_07 AC 113 ms
41,028 KB
testcase_08 AC 104 ms
40,164 KB
testcase_09 AC 112 ms
40,708 KB
testcase_10 AC 104 ms
39,776 KB
testcase_11 AC 113 ms
40,924 KB
testcase_12 AC 101 ms
40,000 KB
testcase_13 AC 112 ms
40,844 KB
testcase_14 AC 111 ms
41,312 KB
testcase_15 AC 112 ms
40,820 KB
testcase_16 AC 105 ms
40,348 KB
testcase_17 AC 95 ms
39,732 KB
testcase_18 AC 113 ms
41,040 KB
testcase_19 AC 116 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/1040
public class Virtical1040 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);
    int angle = Integer.parseInt(sc.next());
    if (angle % 360 == 90 || angle % 360  == 270) {
      System.out.println("Yes");
    } else {
      System.out.println("No");
    }
  }
}
0