結果
| 問題 |
No.933 おまわりさんこいつです
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-11-29 22:43:41 |
| 言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 515 bytes |
| コンパイル時間 | 943 ms |
| コンパイル使用メモリ | 137,472 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-30 15:40:37 |
| 合計ジャッジ時間 | 1,857 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 WA * 16 |
ソースコード
#include <iostream>
#include <vector>
#include <utility>
#include <map>
#include <algorithm>
#include <queue>
#include <cmath>
using namespace std;
int main() {
int n;
cin >> n;
unsigned long long k = 1;
for (int i=0; i<n; i++) {
unsigned long long p;
cin >> p;
k *= p;
}
long long ans = k;
while(ans >= 10) {
k = ans;
ans = 0;
while (k > 0) {
ans += (k % 10);
k /= 10;
}
}
cout << ans << endl;
}