結果
問題 | No.933 おまわりさんこいつです |
ユーザー |
|
提出日時 | 2019-12-01 20:30:50 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 69 ms / 2,000 ms |
コード長 | 378 bytes |
コンパイル時間 | 1,481 ms |
コンパイル使用メモリ | 168,116 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 17:09:54 |
合計ジャッジ時間 | 2,789 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; int main(){ int n;cin >> n; vector<ll> p(n); ll k=1; for(int i=0;i<n;i++){ cin >> p[i]; if(p[i]==0){ cout << 0 << endl; return 0; } if(p[i]%9==0){ k*=9; k%=9; } else{ k*=(p[i]%9); k%=9; } } if(k==0){ k=9; } cout << k << endl; }