結果
| 問題 | No.8075 114101097100032118101114116105099097108108121 |
| コンテスト | |
| ユーザー |
naskya
|
| 提出日時 | 2021-04-01 20:22:43 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 223 bytes |
| 記録 | |
| コンパイル時間 | 542 ms |
| コンパイル使用メモリ | 68,120 KB |
| 最終ジャッジ日時 | 2025-01-20 05:36:22 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 WA * 4 |
ソースコード
#include <cctype>
#include <iostream>
#include <string>
int main() {
std::string S;
std::cin >> S;
std::string T;
for (auto c : S)
if (std::isalpha(c))
T += std::tolower(c);
std::cout << T << "\n";
}
naskya