結果

問題 No.1643 Not Substring
ユーザー ππ
提出日時 2021-08-13 21:30:09
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-03 21:35:25
合計ジャッジ時間 1,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>

int main() {
  char c = 0;
  int a = 0;
  while(c != '\n') {
    c = std::getc(stdin);
    if(c == 'a') ++a;
  }
  for(int i = -1; i < a; ++i) {
    std::putc('a', stdout);
  }
  std::putc('\n', stdout);
}
0