公式
		
		
			
		
		
			
	
B - Exact Price 解説 by en_translator
It is possible if and only if \(X\) is not zero and \(X\) is divisible by \(100\).
Sample code (C++)
#include <bits/stdc++.h>
using namespace std;
int main(){
    int x; cin >> x;
    if(x == 0 || x % 100 != 0) cout << "No" << endl;
    else cout << "Yes" << endl;
}
				投稿日時:
				
				
				最終更新: