結果

問題 No.516 赤と青の風船
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-05-28 22:14:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-09-21 15:31:58
合計ジャッジ時間 3,196 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
40,004 KB
testcase_01 AC 96 ms
39,868 KB
testcase_02 AC 113 ms
41,268 KB
testcase_03 AC 116 ms
40,896 KB
testcase_04 AC 107 ms
41,196 KB
testcase_05 AC 111 ms
41,268 KB
testcase_06 AC 112 ms
40,892 KB
testcase_07 AC 113 ms
41,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String [] S = {sc.next(),sc.next(),sc.next()};
        Arrays.sort(S);
        System.out.println(S[1]);
    }
}
0