結果
| 問題 | No.427 テレビ |
| コンテスト | |
| ユーザー |
Kazu05
|
| 提出日時 | 2019-03-23 09:43:46 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 217 bytes |
| 記録 | |
| コンパイル時間 | 986 ms |
| コンパイル使用メモリ | 178,396 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-10 04:22:01 |
| 合計ジャッジ時間 | 1,871 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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