結果
| 問題 | 
                            No.1723 [Cherry 3rd Tune *] Dead on
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-10-29 21:58:38 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 216 bytes | 
| コンパイル時間 | 2,139 ms | 
| コンパイル使用メモリ | 190,368 KB | 
| 最終ジャッジ日時 | 2025-01-25 08:51:19 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 30 WA * 20 | 
ソースコード
#include <bits/stdc++.h>
using std::cin;
using std::cout;
using ll = long long;
int main() {
	ll x, a, y, b;
	cin >> x >> a >> y >> b;
	
	if (x % y == 0 and b % a == 0) puts("Yes");
	else puts("No");
	
	return 0;
}