結果

問題 No.1040 垂直大学
ユーザー yumechiyumechi
提出日時 2021-02-18 02:39:07
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 9,594 ms
コンパイル使用メモリ 253,068 KB
実行使用メモリ 63,276 KB
最終ジャッジ日時 2024-09-14 11:15:23
合計ジャッジ時間 28,895 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 948 ms
63,236 KB
testcase_01 WA -
testcase_02 AC 941 ms
63,132 KB
testcase_03 AC 947 ms
63,160 KB
testcase_04 AC 949 ms
63,128 KB
testcase_05 AC 948 ms
63,140 KB
testcase_06 AC 946 ms
63,148 KB
testcase_07 AC 951 ms
63,176 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 946 ms
63,032 KB
testcase_11 AC 951 ms
62,932 KB
testcase_12 AC 940 ms
63,276 KB
testcase_13 AC 941 ms
63,052 KB
testcase_14 AC 937 ms
63,084 KB
testcase_15 AC 942 ms
63,256 KB
testcase_16 AC 944 ms
63,088 KB
testcase_17 AC 935 ms
63,260 KB
testcase_18 AC 940 ms
63,164 KB
testcase_19 AC 937 ms
62,932 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