結果
問題 | No.8033 Test of Russian |
ユーザー | regretsfox |
提出日時 | 2018-04-01 23:00:40 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 139 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 27,264 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 06:04:48 |
合計ジャッジ時間 | 606 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 |
ソースコード
#include<stdio.h> int main(void){ int n,m,x; scanf("%d %d %d",&n,&m,&x); if(n-x+3<=m) printf("YES\n"); else printf("NO\n"); }