結果

問題 No.1828 Except 3
ユーザー hir355hir355
提出日時 2022-02-26 01:50:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 67,136 KB
最終ジャッジ日時 2024-07-03 21:09:26
合計ジャッジ時間 1,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,432 KB
testcase_01 AC 44 ms
67,136 KB
testcase_02 AC 32 ms
52,280 KB
testcase_03 AC 33 ms
52,320 KB
testcase_04 AC 33 ms
53,292 KB
testcase_05 AC 33 ms
52,428 KB
testcase_06 AC 35 ms
52,068 KB
testcase_07 AC 33 ms
52,408 KB
testcase_08 AC 34 ms
52,424 KB
testcase_09 AC 33 ms
52,464 KB
testcase_10 AC 36 ms
52,384 KB
testcase_11 AC 36 ms
52,368 KB
testcase_12 AC 36 ms
52,436 KB
testcase_13 AC 36 ms
53,364 KB
testcase_14 AC 40 ms
59,672 KB
testcase_15 AC 41 ms
61,312 KB
testcase_16 AC 35 ms
52,836 KB
testcase_17 AC 34 ms
52,324 KB
testcase_18 AC 34 ms
53,916 KB
testcase_19 AC 36 ms
52,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 1
for i in range(3):
    t = 0
    a = list(map(int, input().split()))
    for x in a:
        if x % 3 != 0:
            t += 1
    ans *= t
print(ans)
0