結果
| 問題 | No.427 テレビ | 
| コンテスト | |
| ユーザー | 👑 | 
| 提出日時 | 2019-03-19 17:57:11 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 221 bytes | 
| コンパイル時間 | 453 ms | 
| コンパイル使用メモリ | 58,616 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-09-14 02:13:53 | 
| 合計ジャッジ時間 | 989 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 8 | 
ソースコード
#include <iostream>
#include <cstdlib>
#include <string>
#include <vector>
#include <algorithm>
int main()
{
    int h, w;
    std::cin >> h >> w;
    std::cout << (h < w ? "YOKO" : "TATE") << std::endl;
    return 0;
}
            
            
            
        