結果
問題 | No.677 10^Nの約数 |
ユーザー | michonz4 |
提出日時 | 2019-12-27 16:53:21 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 697 bytes |
コンパイル時間 | 1,507 ms |
コンパイル使用メモリ | 31,872 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 13:49:54 |
合計ジャッジ時間 | 1,508 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <stdio.h> #include <math.h> #include <stdlib.h> typedef long long ll; int compareUp(const void *a, const void *b) { long *A = (long *)a; long *B = (long *)b; if (*A > *B) return 1; if (*A < *B) return -1; return 0; } int main() { int n; scanf("%d", &n); int size=(n+1)*(n+1), i, j, k=0; ll two[n+1], five[n+1], arr[size]; for (i=0; i<n+1; i++) { two[i]=(ll)pow(2, i); } for (i=0; i<n+1; i++) { five[i]=(ll)pow(5, i); } for (i=0; i<n+1; i++) { for (j=0; j<n+1; j++) { arr[k++]=two[i]*five[j]; } } qsort(arr, size, sizeof(ll), compareUp); for (int i=0; i<size; i++) { printf("%d %lld\n", i+1, arr[i]); } return 0; }