結果

問題 No.1828 Except 3
ユーザー 👑 NachiaNachia
提出日時 2022-02-01 20:57:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 87,160 KB
実行使用メモリ 76,384 KB
最終ジャッジ日時 2023-09-02 02:35:16
合計ジャッジ時間 2,621 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
76,220 KB
testcase_01 AC 76 ms
76,384 KB
testcase_02 AC 67 ms
71,548 KB
testcase_03 AC 65 ms
71,396 KB
testcase_04 AC 66 ms
71,100 KB
testcase_05 AC 65 ms
71,628 KB
testcase_06 AC 62 ms
71,204 KB
testcase_07 AC 66 ms
71,608 KB
testcase_08 AC 67 ms
71,404 KB
testcase_09 AC 68 ms
71,540 KB
testcase_10 AC 70 ms
71,452 KB
testcase_11 AC 68 ms
71,600 KB
testcase_12 AC 68 ms
71,440 KB
testcase_13 AC 69 ms
71,316 KB
testcase_14 AC 73 ms
76,144 KB
testcase_15 AC 71 ms
76,228 KB
testcase_16 AC 65 ms
71,264 KB
testcase_17 AC 63 ms
71,104 KB
testcase_18 AC 64 ms
71,308 KB
testcase_19 AC 65 ms
71,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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