結果

問題 No.725 木は明らかに森である
ユーザー ei1333333
提出日時 2018-03-29 18:34:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 1,930 ms
コンパイル使用メモリ 191,808 KB
最終ジャッジ日時 2025-01-05 09:41:32
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  string treeone;
  cin >> treeone;
  assert(1 <= treeone.size() && treeone.size() <= 100);
  for(auto &c : treeone) {
    assert(islower(c));
  }
}
0