結果

問題 No.1119 Division 3
ユーザー yumechiyumechi
提出日時 2021-02-23 23:06:22
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 13,495 ms
コンパイル使用メモリ 274,024 KB
実行使用メモリ 65,740 KB
最終ジャッジ日時 2024-09-22 17:31:57
合計ジャッジ時間 27,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 950 ms
65,392 KB
testcase_01 AC 953 ms
65,572 KB
testcase_02 AC 947 ms
65,560 KB
testcase_03 AC 957 ms
65,712 KB
testcase_04 AC 954 ms
65,540 KB
testcase_05 AC 958 ms
65,536 KB
testcase_06 WA -
testcase_07 AC 956 ms
65,516 KB
testcase_08 AC 961 ms
65,444 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 950 ms
65,604 KB
testcase_17 AC 959 ms
65,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

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