結果
| 問題 | No.537 ユーザーID | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2017-11-19 15:35:33 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 235 bytes | 
| コンパイル時間 | 854 ms | 
| コンパイル使用メモリ | 55,516 KB | 
| 実行使用メモリ | 13,768 KB | 
| 最終ジャッジ日時 | 2024-11-25 22:48:27 | 
| 合計ジャッジ時間 | 52,906 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 5 WA * 10 TLE * 17 | 
ソースコード
#include <iostream>
using namespace std;
typedef unsigned long long UL;
int main(int argc, char* argv[])
{
	UL N;
	cin>>N;
	UL aw=0;
	for (UL i=2;i<N-1;i++){
		if (N%i==0){
			aw+=2;
		}
	}
	aw/=2;
	aw+=2;
	cout<<aw<<endl;
	return 0;
}
            
            
            
        