結果

問題 No.1119 Division 3
ユーザー yumechiyumechi
提出日時 2021-02-23 23:08:07
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 988 ms / 1,000 ms
コード長 186 bytes
コンパイル時間 8,995 ms
コンパイル使用メモリ 275,600 KB
実行使用メモリ 65,840 KB
最終ジャッジ日時 2024-09-22 17:34:12
合計ジャッジ時間 28,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 967 ms
65,704 KB
testcase_01 AC 969 ms
65,752 KB
testcase_02 AC 967 ms
65,536 KB
testcase_03 AC 965 ms
65,576 KB
testcase_04 AC 963 ms
65,496 KB
testcase_05 AC 973 ms
65,696 KB
testcase_06 AC 971 ms
65,696 KB
testcase_07 AC 974 ms
65,760 KB
testcase_08 AC 973 ms
65,744 KB
testcase_09 AC 966 ms
65,560 KB
testcase_10 AC 957 ms
65,812 KB
testcase_11 AC 964 ms
65,536 KB
testcase_12 AC 982 ms
65,468 KB
testcase_13 AC 976 ms
65,640 KB
testcase_14 AC 974 ms
65,840 KB
testcase_15 AC 972 ms
65,680 KB
testcase_16 AC 963 ms
65,724 KB
testcase_17 AC 988 ms
65,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

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