結果
問題 | No.163 cAPSlOCK |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-29 20:49:03 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 57 ms / 5,000 ms |
コード長 | 721 bytes |
コンパイル時間 | 2,272 ms |
コンパイル使用メモリ | 75,192 KB |
実行使用メモリ | 50,352 KB |
最終ジャッジ日時 | 2024-09-13 19:17:03 |
合計ジャッジ時間 | 4,460 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,352 KB |
testcase_01 | AC | 54 ms
50,320 KB |
testcase_02 | AC | 54 ms
49,916 KB |
testcase_03 | AC | 56 ms
49,924 KB |
testcase_04 | AC | 55 ms
49,928 KB |
testcase_05 | AC | 55 ms
50,220 KB |
testcase_06 | AC | 55 ms
50,196 KB |
testcase_07 | AC | 54 ms
50,316 KB |
testcase_08 | AC | 54 ms
49,932 KB |
testcase_09 | AC | 56 ms
50,288 KB |
testcase_10 | AC | 56 ms
50,232 KB |
testcase_11 | AC | 57 ms
49,904 KB |
testcase_12 | AC | 56 ms
50,268 KB |
testcase_13 | AC | 55 ms
49,908 KB |
testcase_14 | AC | 56 ms
50,256 KB |
testcase_15 | AC | 57 ms
50,024 KB |
testcase_16 | AC | 56 ms
50,172 KB |
testcase_17 | AC | 54 ms
50,176 KB |
testcase_18 | AC | 55 ms
50,204 KB |
testcase_19 | AC | 55 ms
50,276 KB |
testcase_20 | AC | 56 ms
50,196 KB |
testcase_21 | AC | 57 ms
49,812 KB |
testcase_22 | AC | 54 ms
50,228 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String S = reader.readLine(); StringBuilder builder = new StringBuilder(); for (int i = 0; i < S.length(); i++) { if(Character.isUpperCase(S.charAt(i))){ builder.append(Character.toLowerCase(S.charAt(i))); } else { builder.append(Character.toUpperCase(S.charAt(i))); } } System.out.println(builder.toString()); } }