結果
| 問題 | No.292 芸名 | 
| コンテスト | |
| ユーザー |  Naoki00712 | 
| 提出日時 | 2023-06-02 14:36:03 | 
| 言語 | C (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 218 bytes | 
| コンパイル時間 | 239 ms | 
| コンパイル使用メモリ | 28,416 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-12-28 15:34:49 | 
| 合計ジャッジ時間 | 1,196 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
#include <stdio.h>
int main()
{
	char S[51];
	int t, u, len;
	scanf("%s%n%d%d", &S, &len, &t, &u);
	for (int i = 0; i < len; i++)
	{
		if (i == t || i == u)
		{
			continue;
		}
		printf("%c", S[i]);
	}
	return 0;
}
            
            
            
        