結果
| 問題 | No.1527 Input Constant is Good |
| コンテスト | |
| ユーザー |
sasa
|
| 提出日時 | 2025-03-18 13:07:03 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 126 bytes |
| 記録 | |
| コンパイル時間 | 80 ms |
| コンパイル使用メモリ | 37,328 KB |
| 実行使用メモリ | 7,212 KB |
| 最終ジャッジ日時 | 2026-07-07 06:11:49 |
| 合計ジャッジ時間 | 1,288 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
ソースコード
#include <stdio.h>
int main(void){
int A,B;
scanf("%d%d",&A,&B);
if(B < A){
printf("No");
}else{
printf("Yes");
}
}
sasa