結果

問題 No.1828 Except 3
ユーザー yudedakoyudedako
提出日時 2022-02-17 20:01:17
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,047 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 11,964 ms
コンパイル使用メモリ 264,036 KB
実行使用メモリ 65,240 KB
最終ジャッジ日時 2024-06-29 07:47:11
合計ジャッジ時間 29,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 891 ms
64,728 KB
testcase_01 AC 1,047 ms
65,240 KB
testcase_02 AC 917 ms
64,592 KB
testcase_03 AC 880 ms
64,904 KB
testcase_04 AC 873 ms
64,696 KB
testcase_05 AC 912 ms
64,788 KB
testcase_06 AC 889 ms
64,744 KB
testcase_07 AC 882 ms
64,768 KB
testcase_08 AC 864 ms
64,660 KB
testcase_09 AC 868 ms
64,604 KB
testcase_10 AC 857 ms
64,788 KB
testcase_11 AC 865 ms
64,652 KB
testcase_12 AC 882 ms
64,860 KB
testcase_13 AC 885 ms
64,880 KB
testcase_14 AC 889 ms
64,920 KB
testcase_15 AC 891 ms
64,696 KB
testcase_16 AC 879 ms
64,652 KB
testcase_17 AC 909 ms
64,784 KB
testcase_18 AC 866 ms
64,588 KB
testcase_19 AC 871 ms
64,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*


@main def main =
  val n = readLine.toInt
  val a = readLine.split(' ').map(_.toInt)
  val b = readLine.split(' ').map(_.toInt)
  val c = readLine.split(' ').map(_.toInt)
  val result = a.count(_ % 3 != 0).toLong * b.count(_ % 3 != 0).toLong * c.count(_ % 3 != 0)
  println(result)
0