結果
| 問題 | No.537 ユーザーID | 
| コンテスト | |
| ユーザー |  Kura | 
| 提出日時 | 2019-08-16 18:54:21 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 862 bytes | 
| コンパイル時間 | 845 ms | 
| コンパイル使用メモリ | 84,140 KB | 
| 実行使用メモリ | 13,760 KB | 
| 最終ジャッジ日時 | 2024-09-22 12:04:59 | 
| 合計ジャッジ時間 | 4,575 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 6 WA * 9 TLE * 1 -- * 16 | 
ソースコード
#define _USE_MATH_DEFINES//M_PI
#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
#include<iomanip>
#include<math.h>
#include<map>
#define llong long long
#define int(s) atoi(s.c_str())
#define dou(s) atof(s.c_str())
#define llo(s) atoll(s.c_str())
#define str(n) to_string(n)
#define rep(i,a,b) for(int i=a;i<b;i++)
#define all(a) a.begin(),a.end()
#define fion(n) fixed<<setprecision(n)
#define endl '\n'
#define OR ||
#define AND &&
#define NOT !
//#define scanf scanf_s
#define lin(n) scanf("%lld",&n)
#define iin(n) scanf("%d",&n)
#define din(z) scanf("%lf",&z)
#define sin(s) cin>>s
#define input(s) getline(cin,s)
#define START int main
using namespace std;
START() {
	llong a; lin(a);
	llong n = sqrt(a);
	llong c = 0;
	rep(i, 1, a + 1) {
		if (a%i == 0) {
			c++;
		}
	}
	cout << c << endl;
}
            
            
            
        