結果
問題 | No.292 芸名 |
ユーザー |
![]() |
提出日時 | 2018-09-10 18:45:34 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 243 bytes |
コンパイル時間 | 439 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-30 15:44:39 |
合計ジャッジ時間 | 1,371 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#include <stdio.h>int main(void){char S[51];int i, t, u;scanf("%s", S);scanf("%d%d", &t, &u);for (i = 0; S[i] != 0; i++) {if (i == t || i == u) {continue;}printf("%c", S[i]);}}