結果

問題 No.427 テレビ
ユーザー トミー
提出日時 2024-03-27 13:55:34
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 190,752 KB
最終ジャッジ日時 2025-02-20 14:01:29
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef int64_t lint;

int main()
{
    lint h,w;cin>>h>>w;
    if(h>w){
        cout<<"TATE"<<endl;
    }
    else{
        cout<<"YOKO"<<endl;
    }
    // system("pause");

}
0