結果

問題 No.570 3人兄弟(その1)
ユーザー GrenacheGrenache
提出日時 2017-10-07 11:05:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,120 bytes
コンパイル時間 3,555 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-11-17 04:23:16
合計ジャッジ時間 5,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,976 KB
testcase_01 AC 127 ms
41,240 KB
testcase_02 AC 125 ms
41,164 KB
testcase_03 AC 126 ms
41,064 KB
testcase_04 AC 126 ms
41,376 KB
testcase_05 AC 132 ms
40,892 KB
testcase_06 AC 127 ms
40,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder570 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int ha = sc.nextInt();
		int hb = sc.nextInt();
		int hc = sc.nextInt();

		if (ha > hb && hb > hc) {
			pr.println('A');
			pr.println('B');
			pr.println('C');
		} else if (ha > hc && hc > hb) {
			pr.println('A');
			pr.println('C');
			pr.println('B');
		} else if (hb > ha && ha > hc) {
			pr.println('B');
			pr.println('A');
			pr.println('C');
		} else if (hb > hc && hc > ha) {
			pr.println('B');
			pr.println('C');
			pr.println('A');
		} else if (hc > ha && ha > hb) {
			pr.println('C');
			pr.println('A');
			pr.println('B');
		} else if (hc > hb && hb > ha) {
			pr.println('C');
			pr.println('B');
			pr.println('A');
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0