結果
| 問題 |
No.427 テレビ
|
| コンテスト | |
| ユーザー |
Kazu05
|
| 提出日時 | 2019-03-23 09:43:46 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 217 bytes |
| コンパイル時間 | 1,618 ms |
| コンパイル使用メモリ | 164,552 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-21 22:32:10 |
| 合計ジャッジ時間 | 2,174 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.sync_with_stdio(0), cin.tie(0), cout.tie(0);
int h, w;
cin >> h >> w;
if (h > w) {
cout << "TATE" << endl;
} else {
cout << "YOKO" << endl;
}
}
Kazu05