結果
問題 | No.677 10^Nの約数 |
ユーザー | shikaku |
提出日時 | 2018-04-28 02:27:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 855 bytes |
コンパイル時間 | 566 ms |
コンパイル使用メモリ | 66,276 KB |
実行使用メモリ | 784,752 KB |
最終ジャッジ日時 | 2024-06-27 23:12:31 |
合計ジャッジ時間 | 3,069 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | MLE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <cmath> using namespace std; int main(){ long long x, n, i, j; long long t = 1; cin >> n; x = 10; for( i = 1 ; i < n ; i = i + 1 ){ x *= 10; } vector<long long> k(x + 1); for( i = 1 ; i <= n ; i = i + 1 ){ t = (long long)pow(2,i); k.at(t) = 1; for( j = 1 ; j <= n ; j = j + 1 ){ t *= 5; k.at(t) = 1; } } for( i = 1 ; i <= x ; i = i + 1 ){ if( k.at(i) == 1 ) cout << i << endl; } return 0; }