結果
| 問題 |
No.292 芸名
|
| コンテスト | |
| ユーザー |
subsn
|
| 提出日時 | 2023-06-15 15:01:22 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 140 bytes |
| コンパイル時間 | 130 ms |
| コンパイル使用メモリ | 28,288 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-23 14:57:46 |
| 合計ジャッジ時間 | 715 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 10 |
ソースコード
#include <stdio.h>
int main()
{
char s[51];
int a, b;
scanf("%s %d %d",&s,&a,&b);
for(int i=0;s[i++];)if(i!=a&&i!=b)printf("%c",s[i]);
}
subsn