結果
問題 | No.1223 I hate Golf |
ユーザー | 沙耶花 |
提出日時 | 2020-09-11 21:21:40 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 15 ms / 2,000 ms |
コード長 | 357 bytes |
コンパイル時間 | 1,791 ms |
コンパイル使用メモリ | 191,404 KB |
最終ジャッジ日時 | 2025-01-14 09:43:15 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 10000000000000 int main(){ long long N,K,T; cin>>N>>K>>T; N = abs(N); if(K*T>=N)cout<<"Yes"<<endl; else cout<<"No"<<endl; return 0; }