Skip to content

Instantly share code, notes, and snippets.

@oha-yashi
Last active April 27, 2020 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oha-yashi/355c820772e3aa0e02014802d21c7ddf to your computer and use it in GitHub Desktop.
Save oha-yashi/355c820772e3aa0e02014802d21c7ddf to your computer and use it in GitHub Desktop.
abc150-a
#include <bits/stdc++.h>
using namespace std;
int main(){
int K, X;
cin >> K >> X;
if(K*500>=X){
cout << "Yes\n";
}else{
cout << "No\n";
}
return 0;
}
%: %.cpp
c++ -I /Users/.../@AtCoder $< -o $@
# パスの部分はそれぞれの環境に合わせて書き換える
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment