結果

問題 No.1828 Except 3
ユーザー 👑 Nachia
提出日時 2022-02-01 20:55:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-06-11 09:13:51
合計ジャッジ時間 1,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
for n in map(int,input().split()) : print(math.prod([sum([(1 if a % 3 != 0 else 0) for a in map(int,input().split())]) for t in range(3)]))
0