結果
| 問題 | No.537 ユーザーID | 
| コンテスト | |
| ユーザー |  hamray | 
| 提出日時 | 2017-11-23 23:12:38 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 203 bytes | 
| コンパイル時間 | 1,388 ms | 
| コンパイル使用メモリ | 159,120 KB | 
| 実行使用メモリ | 13,772 KB | 
| 最終ジャッジ日時 | 2024-11-27 06:01:00 | 
| 合計ジャッジ時間 | 53,703 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 6 WA * 9 TLE * 17 | 
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){  
    int N; cin >> N;
    int cnt = 0;
    for(int i=1; i<=N; i++){
        if(N % i == 0) cnt++;
    }
    cout << cnt << endl;
    return 0;
}
            
            
            
        