結果

問題 No.1040 垂直大学
ユーザー yumechiyumechi
提出日時 2021-02-18 02:41:06
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 11,731 ms
コンパイル使用メモリ 254,564 KB
実行使用メモリ 65,080 KB
最終ジャッジ日時 2024-09-14 11:22:16
合計ジャッジ時間 32,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 947 ms
64,880 KB
testcase_01 AC 947 ms
64,888 KB
testcase_02 AC 943 ms
65,080 KB
testcase_03 AC 941 ms
64,816 KB
testcase_04 AC 943 ms
64,900 KB
testcase_05 AC 931 ms
64,960 KB
testcase_06 AC 948 ms
64,832 KB
testcase_07 AC 940 ms
64,880 KB
testcase_08 AC 936 ms
64,844 KB
testcase_09 AC 942 ms
64,984 KB
testcase_10 AC 932 ms
64,840 KB
testcase_11 AC 947 ms
64,688 KB
testcase_12 AC 945 ms
64,916 KB
testcase_13 AC 934 ms
64,828 KB
testcase_14 AC 945 ms
64,848 KB
testcase_15 AC 940 ms
64,864 KB
testcase_16 AC 947 ms
64,976 KB
testcase_17 AC 943 ms
64,864 KB
testcase_18 AC 946 ms
64,776 KB
testcase_19 AC 939 ms
65,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  println(sc.nextInt match {
    case n if(!(n % 180 == 0) && n % 90 == 0) => "Yes"
    case _ => "No"
  })
}
0