結果

問題 No.2776 Bigger image
ユーザー ks2mks2m
提出日時 2024-06-07 21:37:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 77,956 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-06-07 21:37:16
合計ジャッジ時間 5,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,032 KB
testcase_01 AC 106 ms
40,924 KB
testcase_02 AC 104 ms
41,320 KB
testcase_03 AC 130 ms
40,948 KB
testcase_04 AC 98 ms
40,232 KB
testcase_05 AC 114 ms
41,272 KB
testcase_06 AC 94 ms
39,676 KB
testcase_07 AC 105 ms
41,132 KB
testcase_08 AC 103 ms
41,112 KB
testcase_09 AC 105 ms
41,152 KB
testcase_10 AC 111 ms
41,384 KB
testcase_11 AC 103 ms
40,384 KB
testcase_12 AC 104 ms
41,336 KB
testcase_13 AC 107 ms
41,612 KB
testcase_14 AC 114 ms
41,100 KB
testcase_15 AC 107 ms
41,264 KB
testcase_16 AC 101 ms
41,292 KB
testcase_17 AC 98 ms
40,340 KB
testcase_18 AC 108 ms
41,172 KB
testcase_19 AC 109 ms
41,612 KB
testcase_20 AC 118 ms
41,076 KB
testcase_21 AC 96 ms
40,164 KB
testcase_22 AC 108 ms
41,216 KB
testcase_23 AC 109 ms
41,272 KB
testcase_24 AC 107 ms
41,268 KB
testcase_25 AC 96 ms
40,232 KB
testcase_26 AC 106 ms
41,228 KB
testcase_27 AC 101 ms
40,184 KB
testcase_28 AC 106 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextInt();
		long b = sc.nextInt();
		long h = sc.nextInt();
		long w = sc.nextInt();
		sc.close();

		if (h * b <= w * a) {
			if (h * a <= w * b) {
				if (a == b) {
					System.out.println("Same");
				} else if (b > a) {
					System.out.println("Non-rotating");
				} else {
					System.out.println("Rotating");
				}
			} else {
				if (h == w) {
					System.out.println("Same");
				} else if (h > w) {
					System.out.println("Non-rotating");
				} else {
					System.out.println("Rotating");
				}
			}
		} else {
			if (h * a <= w * b) {
				if (h == w) {
					System.out.println("Same");
				} else if (w > h) {
					System.out.println("Non-rotating");
				} else {
					System.out.println("Rotating");
				}
			} else {
				if (a == b) {
					System.out.println("Same");
				} else if (a > b) {
					System.out.println("Non-rotating");
				} else {
					System.out.println("Rotating");
				}
			}
		}

	}
}
0