結果
| 問題 | 
                            No.8075 114101097100032118101114116105099097108108121
                             | 
                    
| コンテスト | |
| ユーザー | 
                             nasubi24
                         | 
                    
| 提出日時 | 2021-04-01 20:43:03 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 119 bytes | 
| コンパイル時間 | 615 ms | 
| コンパイル使用メモリ | 82,100 KB | 
| 実行使用メモリ | 52,892 KB | 
| 最終ジャッジ日時 | 2024-12-20 03:16:07 | 
| 合計ジャッジ時間 | 1,733 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 10 | 
ソースコード
s=input()
ans=""
for i in range(len(s)):
    if ord(s[i])<95:
        ans+=s[i].swapcase()
    else:
        ans+=s[i]
            
            
            
        
            
nasubi24