結果
| 問題 | 
                            No.163 cAPSlOCK
                             | 
                    
| コンテスト | |
| ユーザー | 
                             didymium860
                         | 
                    
| 提出日時 | 2024-02-10 11:20:07 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 161 bytes | 
| コンパイル時間 | 134 ms | 
| コンパイル使用メモリ | 82,456 KB | 
| 実行使用メモリ | 54,172 KB | 
| 最終ジャッジ日時 | 2024-09-28 17:05:54 | 
| 合計ジャッジ時間 | 1,809 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 20 | 
ソースコード
S = list(input())
ans = []
for s in S:
    print(s)
    if s.isupper():
        ans.append(s.lower())
    else:
        ans.append(s.upper())
print("".join(ans))
            
            
            
        
            
didymium860