結果
| 問題 |
No.427 テレビ
|
| コンテスト | |
| ユーザー |
btk
|
| 提出日時 | 2016-10-02 22:22:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 268 bytes |
| コンパイル時間 | 1,653 ms |
| コンパイル使用メモリ | 165,288 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-21 14:59:59 |
| 合計ジャッジ時間 | 2,233 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}init;
typedef long long LL;
int main(){
LL x,y;
cin>>x>>y;
if(x%4==0&&(x/4)*3==y)cout<<"TATE"<<endl;
else cout<<"YOKO"<<endl;
return 0;
}
btk