結果

問題 No.163 cAPSlOCK
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-11 22:38:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 769 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-11-07 17:10:21
合計ジャッジ時間 5,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,184 KB
testcase_01 AC 130 ms
41,240 KB
testcase_02 AC 128 ms
41,000 KB
testcase_03 AC 132 ms
41,116 KB
testcase_04 AC 133 ms
41,252 KB
testcase_05 AC 126 ms
41,136 KB
testcase_06 AC 126 ms
40,932 KB
testcase_07 AC 132 ms
41,020 KB
testcase_08 AC 131 ms
41,032 KB
testcase_09 AC 134 ms
41,216 KB
testcase_10 AC 116 ms
40,024 KB
testcase_11 AC 130 ms
41,236 KB
testcase_12 AC 134 ms
41,248 KB
testcase_13 AC 133 ms
41,128 KB
testcase_14 AC 133 ms
41,372 KB
testcase_15 AC 120 ms
40,200 KB
testcase_16 AC 131 ms
40,988 KB
testcase_17 AC 117 ms
40,216 KB
testcase_18 AC 132 ms
41,128 KB
testcase_19 AC 127 ms
41,116 KB
testcase_20 AC 114 ms
40,020 KB
testcase_21 AC 127 ms
41,136 KB
testcase_22 AC 135 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
class  No_163{
	public static void main (String[] args){
 
		Scanner sc = new Scanner(System.in);
                String str1 = sc.nextLine();
                String[ ] str2 = str1.split("");   //1文字ずつに分割して配列に入れる
 
                for ( int i=0; i<str2.length; i++ ){
                      if ( str2[i].equals( str2[i].toUpperCase() ) ){   //配列の文字が大文字と同じなら小文字に変換
                             str2[i] = str2[i].toLowerCase();
                      } else {
                             str2[i] = str2[i].toUpperCase();
                      }
                }
 
                for ( String alpha: str2 ){
                System.out.print (alpha);
               }

	}

}
0