結果

問題 No.427 テレビ
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-10 18:35:26
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 259 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 71,412 KB
実行使用メモリ 56,428 KB
最終ジャッジ日時 2023-08-24 13:27:13
合計ジャッジ時間 4,172 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
56,248 KB
testcase_01 AC 118 ms
55,792 KB
testcase_02 AC 120 ms
55,980 KB
testcase_03 WA -
testcase_04 AC 119 ms
55,680 KB
testcase_05 AC 119 ms
53,852 KB
testcase_06 AC 118 ms
55,436 KB
testcase_07 AC 120 ms
55,976 KB
testcase_08 AC 119 ms
56,320 KB
testcase_09 AC 118 ms
55,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question427
{
	public static void main(String[] args)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int height = scan.nextInt();
		int width = scan.nextInt();
		
		System.out.println(height%3 == 0 ? "YOKO" : "TATE");
	}
}
0