結果

問題 No.427 テレビ
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 17:56:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 72,484 KB
実行使用メモリ 56,452 KB
最終ジャッジ日時 2023-10-11 12:21:10
合計ジャッジ時間 3,893 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,708 KB
testcase_01 AC 122 ms
56,452 KB
testcase_02 AC 123 ms
56,188 KB
testcase_03 AC 123 ms
56,160 KB
testcase_04 AC 124 ms
56,224 KB
testcase_05 AC 124 ms
55,908 KB
testcase_06 AC 120 ms
55,900 KB
testcase_07 AC 121 ms
56,048 KB
testcase_08 AC 124 ms
55,940 KB
testcase_09 AC 126 ms
55,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		if (sc.nextInt() > sc.nextInt()) System.out.println("TATE");
		else System.out.println("YOKO");
		
	}
}
0