結果
問題 |
No.537 ユーザーID
|
ユーザー |
![]() |
提出日時 | 2022-08-09 12:49:11 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 205 bytes |
コンパイル時間 | 2,481 ms |
コンパイル使用メモリ | 244,108 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-19 18:54:07 |
合計ジャッジ時間 | 3,832 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 WA * 13 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int N; cin>>N; int ans = 0; for(int i=1;i*i<=N;i++){ if(N%i == 0) ans+=1+(i*i!=N); } cout<<ans<<endl; }