結果
問題 | No.163 cAPSlOCK |
ユーザー | kenji_shioya |
提出日時 | 2016-06-23 22:47:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 133 ms / 5,000 ms |
コード長 | 578 bytes |
コンパイル時間 | 3,673 ms |
コンパイル使用メモリ | 74,212 KB |
実行使用メモリ | 41,632 KB |
最終ジャッジ日時 | 2024-10-11 18:58:49 |
合計ジャッジ時間 | 7,587 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,456 KB |
testcase_01 | AC | 130 ms
41,200 KB |
testcase_02 | AC | 112 ms
39,784 KB |
testcase_03 | AC | 129 ms
41,632 KB |
testcase_04 | AC | 128 ms
41,028 KB |
testcase_05 | AC | 129 ms
41,128 KB |
testcase_06 | AC | 133 ms
41,220 KB |
testcase_07 | AC | 128 ms
41,424 KB |
testcase_08 | AC | 127 ms
41,148 KB |
testcase_09 | AC | 127 ms
41,372 KB |
testcase_10 | AC | 128 ms
41,340 KB |
testcase_11 | AC | 128 ms
41,192 KB |
testcase_12 | AC | 131 ms
41,152 KB |
testcase_13 | AC | 131 ms
41,524 KB |
testcase_14 | AC | 128 ms
41,232 KB |
testcase_15 | AC | 130 ms
41,388 KB |
testcase_16 | AC | 132 ms
41,276 KB |
testcase_17 | AC | 126 ms
41,256 KB |
testcase_18 | AC | 131 ms
41,028 KB |
testcase_19 | AC | 126 ms
41,348 KB |
testcase_20 | AC | 128 ms
41,124 KB |
testcase_21 | AC | 125 ms
41,188 KB |
testcase_22 | AC | 127 ms
41,152 KB |
ソースコード
import java.util.Scanner; public class Exercises6{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); String str = sc.next(); char[] chars = new char[str.length()]; String newStr; for(int n = 0; n < str.length(); n++){ char c = str.charAt(n); if (Character.isUpperCase(c)){ char newC = Character.toLowerCase(c); chars[n] = newC; }else{ char newC = Character.toUpperCase(c); chars[n] = newC; } } newStr = new String(chars); System.out.println(newStr); } }