結果

問題 No.1828 Except 3
ユーザー hir355hir355
提出日時 2022-02-26 01:50:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 86,980 KB
実行使用メモリ 76,652 KB
最終ジャッジ日時 2023-09-16 22:12:56
合計ジャッジ時間 2,728 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
76,144 KB
testcase_01 AC 72 ms
76,652 KB
testcase_02 AC 62 ms
71,296 KB
testcase_03 AC 67 ms
71,340 KB
testcase_04 AC 62 ms
71,696 KB
testcase_05 AC 64 ms
71,424 KB
testcase_06 AC 64 ms
71,596 KB
testcase_07 AC 64 ms
71,600 KB
testcase_08 AC 64 ms
71,380 KB
testcase_09 AC 63 ms
71,580 KB
testcase_10 AC 63 ms
71,424 KB
testcase_11 AC 62 ms
71,440 KB
testcase_12 AC 62 ms
71,392 KB
testcase_13 AC 65 ms
71,416 KB
testcase_14 AC 67 ms
76,376 KB
testcase_15 AC 67 ms
76,544 KB
testcase_16 AC 62 ms
71,288 KB
testcase_17 AC 62 ms
71,360 KB
testcase_18 AC 64 ms
71,292 KB
testcase_19 AC 65 ms
71,440 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