結果

問題 No.427 テレビ
ユーザー funakoshi
提出日時 2019-08-20 14:27:31
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-06 12:12:39
合計ジャッジ時間 824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
int main(void)
{
    int h,w;
    scanf("%d %d",&h,&w);
    if(h<w)
    {
        printf("YOKO");
    }
    else
    {
        printf("TATE");
    }
    
}
0