結果
| 問題 |
No.208 王将
|
| コンテスト | |
| ユーザー |
forest3
|
| 提出日時 | 2025-03-28 15:34:08 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 221 bytes |
| コンパイル時間 | 1,657 ms |
| コンパイル使用メモリ | 160,460 KB |
| 実行使用メモリ | 7,328 KB |
| 最終ジャッジ日時 | 2025-03-28 15:34:12 |
| 合計ジャッジ時間 | 3,070 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 19 WA * 4 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for(int i = 0; i < n; i++)
int main() {
int x, y, x2, y2;
cin >> x >> y >> x2 >> y2;
int ans = max(x, y);
cout << ans << endl;
}
forest3