結果
問題 | No.933 おまわりさんこいつです |
ユーザー |
|
提出日時 | 2022-10-08 16:44:05 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 19 ms / 2,000 ms |
コード長 | 470 bytes |
コンパイル時間 | 2,042 ms |
コンパイル使用メモリ | 194,992 KB |
最終ジャッジ日時 | 2025-02-08 00:30:07 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); int N; cin >> N; vector<ll> P(N); rep(i,N) cin >> P[i]; int ZERO = 0; rep(i,N) ZERO |= P[i] == 0; if(ZERO) { cout << 0 << endl; } else { ll ans = 1; rep(i,N) ans = (ans * (P[i] % 9)) % 9; cout << (ans == 0 ? 9 : ans) << endl; } }