結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
miku39kk
|
| 提出日時 | 2017-06-30 23:12:08 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 221 bytes |
| 記録 | |
| コンパイル時間 | 305 ms |
| コンパイル使用メモリ | 70,144 KB |
| 実行使用メモリ | 9,728 KB |
| 最終ジャッジ日時 | 2026-04-20 14:26:39 |
| 合計ジャッジ時間 | 4,357 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 9 TLE * 1 -- * 16 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main() {
int n,ans = 0;
cin >> n;
for(int i = 1;i <= n;i++){
if(n % i == 0) ans++;
}
cout << ans << "\n";
return 0;
}
miku39kk