結果
| 問題 | No.933 おまわりさんこいつです |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-26 04:23:48 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 21 ms / 2,000 ms |
| コード長 | 427 bytes |
| 記録 | |
| コンパイル時間 | 2,186 ms |
| コンパイル使用メモリ | 193,408 KB |
| 最終ジャッジ日時 | 2025-01-12 05:47:50 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0; i<(int)(n); i++)
int f(long long x) {
return x % 9 == 0 ? 9 : x % 9;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
int ret = 1;
int zero = 0;
REP (i, n) {
long long p;
cin >> p;
if (!p) ++zero;
ret = f(f(p) * ret);
}
if (zero)
ret = 0;
cout << ret << endl;
return 0;
}