結果
| 問題 | No.138 化石のバージョン |
| コンテスト | |
| ユーザー |
sasa
|
| 提出日時 | 2025-03-14 10:06:38 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 305 bytes |
| 記録 | |
| コンパイル時間 | 97 ms |
| コンパイル使用メモリ | 37,380 KB |
| 実行使用メモリ | 9,276 KB |
| 最終ジャッジ日時 | 2026-07-07 02:36:38 |
| 合計ジャッジ時間 | 1,711 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 33 |
ソースコード
#include <stdio.h>
#include <string.h>
int main(){
int A1,A2,B1,B2,C1,C2;
scanf("%d%d%d%d%d%d",&A1,&A2,&B1,&B2,&C1,&C2);
if(A1 > A2){
printf("YES");
return 0;
if(B1 > B2){
printf("YES");
return 0;
if(C1 > C2){
printf("YES");
return 0;
}else{
printf("NO");
}
}
}
}
sasa