結果
問題 | No.1828 Except 3 |
ユーザー | matcharate12 |
提出日時 | 2022-01-19 17:07:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 502 bytes |
コンパイル時間 | 1,382 ms |
コンパイル使用メモリ | 168,120 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-11 09:12:14 |
合計ジャッジ時間 | 7,392 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,311 ms
10,624 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,a,b) for(int i = (a); i < (b); i++) #define all(A) (A).begin(),(A).end() #define MOD 1000 using namespace std; using ll = long long; using Graph = vector<vector<int>>; int main(void){ int n; cin >> n; vector<int> A(n),B(n),C(n); rep(i,0,n) cin >> A[i]; rep(i,0,n) cin >> B[i]; rep(i,0,n) cin >> C[i]; int ans = 0; rep(i,0,n){ rep(j,0,n){ rep(k,0,n){ if(A[i]%3 != 0 && B[j]%3 != 0 && C[k]%3 != 0) ans++; } } } cout << ans; }