結果

問題 No.163 cAPSlOCK
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-03-13 00:30:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 848 bytes
コンパイル時間 2,926 ms
コンパイル使用メモリ 75,340 KB
実行使用メモリ 37,216 KB
最終ジャッジ日時 2024-06-28 22:44:19
合計ジャッジ時間 4,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,088 KB
testcase_01 AC 46 ms
36,804 KB
testcase_02 AC 47 ms
37,112 KB
testcase_03 AC 47 ms
36,904 KB
testcase_04 AC 47 ms
37,168 KB
testcase_05 AC 47 ms
37,216 KB
testcase_06 AC 47 ms
36,900 KB
testcase_07 AC 47 ms
36,948 KB
testcase_08 AC 47 ms
37,108 KB
testcase_09 AC 49 ms
37,000 KB
testcase_10 AC 48 ms
36,660 KB
testcase_11 AC 47 ms
37,152 KB
testcase_12 AC 47 ms
36,868 KB
testcase_13 AC 48 ms
37,060 KB
testcase_14 AC 47 ms
37,096 KB
testcase_15 AC 46 ms
37,044 KB
testcase_16 AC 46 ms
36,908 KB
testcase_17 AC 46 ms
37,036 KB
testcase_18 AC 46 ms
37,032 KB
testcase_19 AC 46 ms
37,168 KB
testcase_20 AC 46 ms
36,964 KB
testcase_21 AC 45 ms
37,048 KB
testcase_22 AC 46 ms
36,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No163_2 {

    static final InputStream in = System.in;
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = br.readLine();
        for (int i=0; i<s.length(); i++) out.print((char)(s.charAt(i)^32));
        out.println();
    }

    public static void main(String[] args) throws Exception {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        in.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0