結果

問題 No.1003 サイコロの実装 (1)
ユーザー yumechiyumechi
提出日時 2021-02-18 02:05:40
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 957 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 11,913 ms
コンパイル使用メモリ 248,812 KB
実行使用メモリ 63,320 KB
最終ジャッジ日時 2024-09-14 10:45:19
合計ジャッジ時間 36,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 945 ms
62,952 KB
testcase_01 AC 941 ms
63,320 KB
testcase_02 AC 936 ms
63,120 KB
testcase_03 AC 940 ms
63,064 KB
testcase_04 AC 946 ms
63,232 KB
testcase_05 AC 949 ms
63,212 KB
testcase_06 AC 940 ms
63,152 KB
testcase_07 AC 933 ms
63,152 KB
testcase_08 AC 945 ms
63,076 KB
testcase_09 AC 949 ms
63,176 KB
testcase_10 AC 949 ms
63,140 KB
testcase_11 AC 946 ms
63,244 KB
testcase_12 AC 954 ms
63,132 KB
testcase_13 AC 956 ms
62,896 KB
testcase_14 AC 956 ms
63,136 KB
testcase_15 AC 955 ms
63,104 KB
testcase_16 AC 951 ms
63,252 KB
testcase_17 AC 957 ms
63,284 KB
testcase_18 AC 955 ms
63,120 KB
testcase_19 AC 950 ms
63,156 KB
testcase_20 AC 945 ms
63,160 KB
testcase_21 AC 946 ms
63,304 KB
testcase_22 AC 947 ms
63,004 KB
testcase_23 AC 948 ms
63,140 KB
testcase_24 AC 944 ms
63,040 KB
testcase_25 AC 944 ms
63,120 KB
testcase_26 AC 941 ms
63,236 KB
testcase_27 AC 954 ms
63,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

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