結果

問題 No.1040 垂直大学
ユーザー 👑 yumechiyumechi
提出日時 2021-02-18 02:39:07
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 7,178 ms
コンパイル使用メモリ 241,164 KB
実行使用メモリ 64,892 KB
最終ジャッジ日時 2023-10-12 12:20:52
合計ジャッジ時間 28,632 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 953 ms
62,968 KB
testcase_01 WA -
testcase_02 AC 940 ms
63,088 KB
testcase_03 AC 954 ms
62,844 KB
testcase_04 AC 946 ms
62,760 KB
testcase_05 AC 969 ms
63,096 KB
testcase_06 AC 952 ms
62,784 KB
testcase_07 AC 958 ms
62,708 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 954 ms
62,816 KB
testcase_11 AC 985 ms
62,672 KB
testcase_12 AC 952 ms
62,780 KB
testcase_13 AC 959 ms
62,812 KB
testcase_14 AC 957 ms
62,728 KB
testcase_15 AC 949 ms
62,732 KB
testcase_16 AC 951 ms
62,724 KB
testcase_17 AC 938 ms
62,740 KB
testcase_18 AC 940 ms
62,872 KB
testcase_19 AC 956 ms
62,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

  println(sc.nextInt % 90 match {
    case 0 => "Yes"
    case _ => "No"
  })
}
0