結果

問題 No.427 テレビ
ユーザー cande398cande398
提出日時 2017-10-08 15:12:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-11-17 05:32:07
合計ジャッジ時間 3,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,088 KB
testcase_01 WA -
testcase_02 AC 110 ms
40,148 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 119 ms
40,904 KB
testcase_06 AC 118 ms
41,180 KB
testcase_07 AC 126 ms
41,524 KB
testcase_08 WA -
testcase_09 AC 107 ms
39,988 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