結果
| 問題 |
No.8075 114101097100032118101114116105099097108108121
|
| コンテスト | |
| ユーザー |
nasubi24
|
| 提出日時 | 2021-04-01 20:42:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 119 bytes |
| コンパイル時間 | 168 ms |
| コンパイル使用メモリ | 82,448 KB |
| 実行使用メモリ | 54,060 KB |
| 最終ジャッジ日時 | 2024-12-20 03:15:33 |
| 合計ジャッジ時間 | 1,593 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / 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