結果
| 問題 |
No.677 10^Nの約数
|
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2018-05-01 19:23:01 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 880 bytes |
| コンパイル時間 | 1,021 ms |
| コンパイル使用メモリ | 85,672 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 00:12:34 |
| 合計ジャッジ時間 | 1,532 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 17 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:46:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
46 | scanf("%d", &n);
| ~~~~~^~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*-
*
* 677.cc: No.677 10^Nの約数 - yukicoder
*/
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
using namespace std;
/* constant */
const int MAX_N = 18;
const int MAX_M = (MAX_N + 1) * (MAX_N + 1);
/* typedef */
typedef long long ll;
/* global variables */
ll ds[MAX_M];
/* subroutines */
/* main */
int main() {
int n;
scanf("%d", &n);
int m = 0;
for (int i = 0; i <= n; i++) {
ll d = (1LL << i);
for (int j = 0; j <= n; j++) {
ds[m++] = d;
d *= 5;
}
}
sort(ds, ds + m);
for (int i = 0; i < m; i++) printf("%lld\n", ds[i]);
return 0;
}
tnakao0123