結果
問題 | No.537 ユーザーID |
ユーザー | Imperi_Night |
提出日時 | 2018-08-29 03:34:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 686 bytes |
コンパイル時間 | 549 ms |
コンパイル使用メモリ | 69,224 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-19 04:54:04 |
合計ジャッジ時間 | 8,935 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | TLE | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | TLE | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:37:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 37 | scanf("%d",&N); | ~~~~~^~~~~~~~~
ソースコード
#include <cstdio> #include <vector> #include <map> #include <algorithm> #include <cmath> #include <iostream> #include <string> #include <set> #define rep(i,N) for(int (i)=0;(i)<(N);(i)++) #define MOD 1000000007 using namespace std; int powmod(int a, int b, int p) { if (b == 0)return 1; else if (b % 2 == 0)return (powmod(a*a, b / 2, p) % p); else return (powmod(a, b - 1, p)*a%p); } int factorialmod(int a, int p) { if (!a)return 1; else return a * factorialmod(a - 1, p) % p; } int count_factor(int N) { int cnt = 0; for (int i = 1; i <= N; i++) { if (N%i == 0)cnt++; } return cnt; } int N; int main(){ scanf("%d",&N); printf("%d\n", count_factor(N)); return 0; }