提出 #17480551
ソースコード 拡げる
Copy
#include<bits/stdc++.h> using namespace std; #define ll long long #define debug(x) cout<<x<<"DE\n"; #define debug2(x,y) cout<<x<<" "<<y<<"DE\n"; int main() { ll n,m=0,e=0,c=0; cin>>n; set<ll>s; for(int i=1;i*i<=n;i++){ if(n%i==0){ s.insert(i); s.insert(n/i); } } for(auto it=s.begin();it!=s.end();it++){ cout<<*it<<endl; } }
提出情報
提出日時 | |
---|---|
問題 | C - Cream puff |
ユーザ | Hafiz_ |
言語 | C++ (GCC 9.2.1) |
得点 | 0 |
コード長 | 425 Byte |
結果 | TLE |
実行時間 | 2205 ms |
メモリ | 3632 KB |
コンパイルエラー
./Main.cpp: In function ‘int main()’: ./Main.cpp:10:10: warning: unused variable ‘m’ [-Wunused-variable] 10 | ll n,m=0,e=0,c=0; | ^ ./Main.cpp:10:14: warning: unused variable ‘e’ [-Wunused-variable] 10 | ll n,m=0,e=0,c=0; | ^ ./Main.cpp:10:18: warning: unused variable ‘c’ [-Wunused-variable] 10 | ll n,m=0,e=0,c=0; | ^
ジャッジ結果
セット名 | Sample | All | ||||||
---|---|---|---|---|---|---|---|---|
得点 / 配点 | 0 / 0 | 0 / 300 | ||||||
結果 |
|
|
セット名 | テストケース |
---|---|
Sample | sample_01.txt, sample_02.txt, sample_03.txt |
All | hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, hand_07.txt, hand_08.txt, hand_09.txt, hand_10.txt, hand_11.txt, hand_12.txt, hand_13.txt, hand_14.txt, hand_15.txt, hand_88.txt, hand_99.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, sample_01.txt, sample_02.txt, sample_03.txt |
ケース名 | 結果 | 実行時間 | メモリ |
---|---|---|---|
hand_01.txt | TLE | 2205 ms | 3328 KB |
hand_02.txt | TLE | 2205 ms | 3324 KB |
hand_03.txt | TLE | 2205 ms | 3492 KB |
hand_04.txt | TLE | 2205 ms | 3204 KB |
hand_05.txt | TLE | 2205 ms | 3392 KB |
hand_06.txt | TLE | 2205 ms | 3184 KB |
hand_07.txt | TLE | 2205 ms | 3236 KB |
hand_08.txt | TLE | 2205 ms | 3152 KB |
hand_09.txt | TLE | 2205 ms | 3232 KB |
hand_10.txt | TLE | 2205 ms | 3524 KB |
hand_11.txt | TLE | 2205 ms | 3548 KB |
hand_12.txt | TLE | 2205 ms | 3252 KB |
hand_13.txt | TLE | 2205 ms | 3416 KB |
hand_14.txt | TLE | 2205 ms | 3284 KB |
hand_15.txt | TLE | 2205 ms | 3208 KB |
hand_88.txt | TLE | 2205 ms | 3240 KB |
hand_99.txt | AC | 10 ms | 3580 KB |
random_01.txt | TLE | 2205 ms | 3292 KB |
random_02.txt | AC | 11 ms | 3580 KB |
random_03.txt | TLE | 2205 ms | 3392 KB |
random_04.txt | AC | 8 ms | 3584 KB |
random_05.txt | TLE | 2205 ms | 3152 KB |
random_06.txt | AC | 6 ms | 3484 KB |
sample_01.txt | AC | 2 ms | 3632 KB |
sample_02.txt | AC | 2 ms | 3580 KB |
sample_03.txt | AC | 2 ms | 3596 KB |