結果
| 問題 |
No.427 テレビ
|
| コンテスト | |
| ユーザー |
femto
|
| 提出日時 | 2016-10-02 22:21:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 347 bytes |
| コンパイル時間 | 746 ms |
| コンパイル使用メモリ | 77,392 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-21 14:59:55 |
| 合計ジャッジ時間 | 1,326 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
#include <iostream>
#include <vector>
#include <cstring>
#include <string>
#include <algorithm>
#include <iomanip>
#include <cmath>
#include <cassert>
using namespace std;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int H, W;
cin >> H >> W;
if(H * 3 == W * 4) {
cout << "TATE" << endl;
}
else {
cout << "YOKO" << endl;
}
}
femto