結果
問題 | No.558 575検出するやつ |
ユーザー |
![]() |
提出日時 | 2017-06-18 15:28:24 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 298 bytes |
コンパイル時間 | 595 ms |
コンパイル使用メモリ | 64,000 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 20:02:37 |
合計ジャッジ時間 | 1,235 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 5 |
other | WA * 15 |
ソースコード
// input checker #include <cassert> #include <iostream> using namespace std; int main(){ string s; cin >> s; for(auto c : s){ assert( ('a'<=c && c<='z') || ('A'<=c && c<='Z') || ('0'<=c && c<='9') ); } assert( 1 <= s.size() && s.size() <= 100); cerr << "ok" << endl; return 0; }