結果

問題 No.427 テレビ
ユーザー YatsukuYatsuku
提出日時 2016-10-14 12:59:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 2,715 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-12-21 17:32:11
合計ジャッジ時間 4,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,660 KB
testcase_01 AC 109 ms
52,884 KB
testcase_02 AC 122 ms
54,000 KB
testcase_03 AC 113 ms
53,396 KB
testcase_04 AC 109 ms
52,968 KB
testcase_05 AC 119 ms
53,824 KB
testcase_06 AC 124 ms
54,248 KB
testcase_07 AC 118 ms
54,040 KB
testcase_08 AC 109 ms
53,084 KB
testcase_09 AC 118 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No427 {
    public static void main(String[] args) {
        long num1, num2;

        Scanner stdin = new Scanner(System.in);
        num1 = stdin.nextLong();
        num2 = stdin.nextLong();

        if (num1 > num2) {
            System.out.println("TATE");
        } else {
            System.out.println("YOKO");
        }
    }
}
0