結果

問題 No.8075 114101097100032118101114116105099097108108121
ユーザー naskya
提出日時 2021-04-01 20:22:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 68,120 KB
最終ジャッジ日時 2025-01-20 05:36:22
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#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";
}
0