結果

問題 No.427 テレビ
ユーザー yaoshimaxyaoshimax
提出日時 2016-10-02 22:24:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-12-21 15:02:20
合計ジャッジ時間 1,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,raw_input().split())
if H > W:
   print "TATE"
else:
   print "YOKO"
0