結果

問題 No.1119 Division 3
ユーザー 👑 yumechiyumechi
提出日時 2021-02-23 23:05:30
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 10,130 ms
コンパイル使用メモリ 264,644 KB
実行使用メモリ 65,876 KB
最終ジャッジ日時 2023-10-24 00:24:38
合計ジャッジ時間 28,862 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 935 ms
65,832 KB
testcase_01 AC 937 ms
65,812 KB
testcase_02 AC 938 ms
65,836 KB
testcase_03 AC 940 ms
65,840 KB
testcase_04 WA -
testcase_05 AC 939 ms
65,816 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 933 ms
65,840 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 935 ms
65,844 KB
testcase_17 AC 940 ms
65,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

  val tn = Array.fill(3)(sc.nextInt)
  println(if (tn.product % 3 == 0) "Yes" else "No")
}
0