結果
| 問題 |
No.208 王将
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-09-02 22:24:41 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 164 ms |
| コンパイル使用メモリ | 27,264 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-02 14:09:23 |
| 合計ジャッジ時間 | 1,079 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 19 WA * 4 |
ソースコード
#include <stdio.h>
int main(void)
{
int x,y;
scanf("%d%d%*d%*d",&x,&y);
if(x>y)printf("%d",x);
else printf("%d",y);
return 0;
}