結果

問題 No.427 テレビ
ユーザー cande398cande398
提出日時 2017-10-08 15:12:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-04-28 13:25:43
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,804 KB
testcase_01 WA -
testcase_02 AC 129 ms
53,772 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 124 ms
53,788 KB
testcase_06 AC 123 ms
53,956 KB
testcase_07 AC 127 ms
53,880 KB
testcase_08 WA -
testcase_09 AC 128 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int a = sc.nextInt();
    int b = sc.nextInt();
    System.out.println(a/b>1?"TATE":"YOKO");
  }
}
0