結果

問題 No.427 テレビ
ユーザー hiro_metal_core
提出日時 2017-11-03 22:42:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-22 16:06:21
合計ジャッジ時間 966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

tate, yoko = list(map(int, input().split()))

if (tate%4 == 0 and yoko/(tate/4) == 3):
    print('TATE')
else:
    print('YOKO')
0