結果

問題 No.1040 垂直大学
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-07 19:38:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 3,612 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 56,100 KB
最終ジャッジ日時 2024-07-04 12:37:15
合計ジャッジ時間 7,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,380 KB
testcase_01 AC 128 ms
54,088 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 124 ms
53,960 KB
testcase_05 WA -
testcase_06 AC 128 ms
56,100 KB
testcase_07 AC 128 ms
53,852 KB
testcase_08 AC 127 ms
54,264 KB
testcase_09 AC 129 ms
54,096 KB
testcase_10 AC 124 ms
54,008 KB
testcase_11 AC 128 ms
53,944 KB
testcase_12 AC 125 ms
54,116 KB
testcase_13 AC 128 ms
54,148 KB
testcase_14 AC 126 ms
54,144 KB
testcase_15 AC 126 ms
54,128 KB
testcase_16 AC 128 ms
53,876 KB
testcase_17 AC 126 ms
54,004 KB
testcase_18 AC 130 ms
54,004 KB
testcase_19 AC 125 ms
53,844 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) {
      System.out.println("Yes");
    } else {
      System.out.println("No");
    }
  }
}
0