結果

問題 No.1119 Division 3
ユーザー yumechiyumechi
提出日時 2021-02-23 23:05:30
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 12,743 ms
コンパイル使用メモリ 271,024 KB
実行使用メモリ 65,724 KB
最終ジャッジ日時 2024-09-22 17:28:13
合計ジャッジ時間 31,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 967 ms
65,724 KB
testcase_01 AC 959 ms
65,640 KB
testcase_02 AC 965 ms
65,612 KB
testcase_03 AC 969 ms
65,520 KB
testcase_04 WA -
testcase_05 AC 967 ms
65,628 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 966 ms
65,708 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 AC 971 ms
65,488 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