結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
u-sho
|
| 提出日時 | 2017-06-30 22:56:02 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 227 bytes |
| コンパイル時間 | 476 ms |
| コンパイル使用メモリ | 54,232 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-10-04 20:56:39 |
| 合計ジャッジ時間 | 4,013 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 9 TLE * 1 -- * 16 |
ソースコード
#include <iostream>
using namespace std;
long long div(long long N){
long long i,c=0;
for(i=1;i<=N;i++){
if(N%i==0){c++;}
}
return c;
}
int main(void){
long long n;
cin>>n;
cout<<div(n)<<endl;
return 0;
}
u-sho