結果
| 問題 |
No.427 テレビ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-12-15 01:55:35 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 2,000 ms |
| コード長 | 274 bytes |
| コンパイル時間 | 702 ms |
| コンパイル使用メモリ | 72,460 KB |
| 最終ジャッジ日時 | 2025-01-08 11:36:12 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long int ll;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
ll h,w; cin >> h >> w;
if(h*3==w*4){
cout << "TATE" << endl;
}
else{
cout << "YOKO" << endl;
}
}