結果
| 問題 |
No.2460 #強調#
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2023-10-03 12:35:49 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 209 bytes |
| コンパイル時間 | 501 ms |
| コンパイル使用メモリ | 68,172 KB |
| 最終ジャッジ日時 | 2025-02-17 04:05:41 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 11 |
ソースコード
#include <iostream>
using namespace std;
int main(){
string s;cin>>s;
for(int i = 0; s.size() > i; i++){
if(s[i] == '#'){
i++;
while(s[i] == '#')cout << s[i++];
cout << endl;
return 0;
}
}
}