結果
問題 | No.1723 [Cherry 3rd Tune *] Dead on |
ユーザー | mnm |
提出日時 | 2022-06-13 19:21:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,444 bytes |
コンパイル時間 | 782 ms |
コンパイル使用メモリ | 82,004 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-01 07:09:37 |
合計ジャッジ時間 | 6,328 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 5 ms
6,820 KB |
testcase_04 | AC | 6 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 1,009 ms
6,820 KB |
testcase_11 | AC | 477 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cmath> #include <tuple> #include <bitset> #define rep(i,n) for(i=0; i<n; ++i) #define in(a) cin >> a #define out(a,b) cout << a << b using namespace std; using lint = long long; bool is_prime(lint n){ if(n==2||n==3) return true; if(n<2||n%2==0) return false; bool f=true; for(lint i=3; i*i<=n; i+=2){ if(n%i==0){ f=false; break; } } return f; } vector<pair<lint, lint>> prime_factorize(int n){ vector<pair<lint, lint>> prime_factors; lint p=2, cnt=0; while(n>1){ if(n%p!=0){ if(cnt!=0){ prime_factors.push_back(make_pair(p, cnt)); cnt=0; } do{p++;}while(!is_prime(p)); } else{ n/=p; cnt++; } } prime_factors.push_back(make_pair(p, cnt)); return prime_factors; } lint div_much(int r_sml, int n_lrg){ lint cnt=0; while(n_lrg%r_sml==0){ n_lrg/=r_sml; cnt++; } return cnt; } int main(void){ lint i, j; lint p, n, m; lint x, a, y, b; in(x); in(a); in(y); in(b); vector<pair<lint,lint>> y_prime=prime_factorize(y); bool f=true; rep(i,y_prime.size()){ tie(p, n)=y_prime[i]; m=div_much(p,x); if(m*a<n*b){ f=false; break; } } f? out("Yes",endl):out("No",endl); return 0; }