提出 #28698954
ソースコード 拡げる
#include <stdio.h>
int main()
{
int i,j,N,cnt=0,x=0,w;
int p[200000];
scanf("%d",&N);
for(i=0;i<N;i++)
{
scanf("%d",&p[i]);
}
for(i=0;i<N;i++){
w=1;
for(j=i+1;j<N;j++)
{
if(p[i]==p[j]){
w++;
}
}
if(w>=cnt){
if(cnt<p[i]){
cnt=w;
x=p[i];
}
}
}
for(w=0;w<N;w++){
if(p[w]!=x)
printf("%d ",p[w]);
}
return 0;
}
提出情報
| 提出日時 | |
|---|---|
| 問題 | A - Erase by Value |
| ユーザ | TCSP |
| 言語 | C (GCC 9.2.1) |
| 得点 | 0 |
| コード長 | 394 Byte |
| 結果 | WA |
| 実行時間 | 2205 ms |
| メモリ | 2312 KiB |
コンパイルエラー
./Main.c: In function ‘main’:
./Main.c:6:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
6 | scanf("%d",&N);
| ^~~~~~~~~~~~~~
./Main.c:9:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
9 | scanf("%d",&p[i]);
| ^~~~~~~~~~~~~~~~~
ジャッジ結果
| セット名 | Sample | All | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| 得点 / 配点 | 0 / 0 | 0 / 300 | ||||||||
| 結果 |
|
|
| セット名 | テストケース |
|---|---|
| Sample | 00-sample-001.txt, 00-sample-002.txt, 00-sample-003.txt |
| All | 00-sample-001.txt, 00-sample-002.txt, 00-sample-003.txt, 01-001.txt, 01-002.txt, 01-003.txt, 01-004.txt, 01-005.txt, 01-006.txt, 01-007.txt, 01-008.txt, 01-009.txt, 01-010.txt, 01-011.txt, 01-012.txt, 01-013.txt, 01-014.txt, 01-015.txt, 01-016.txt, 01-017.txt, 01-018.txt, 01-019.txt, 01-020.txt, 01-021.txt |
| ケース名 | 結果 | 実行時間 | メモリ |
|---|---|---|---|
| 00-sample-001.txt | AC | 3 ms | 1660 KiB |
| 00-sample-002.txt | AC | 2 ms | 1660 KiB |
| 00-sample-003.txt | AC | 2 ms | 1684 KiB |
| 01-001.txt | AC | 1 ms | 1620 KiB |
| 01-002.txt | TLE | 2205 ms | 2008 KiB |
| 01-003.txt | TLE | 2205 ms | 2116 KiB |
| 01-004.txt | TLE | 2205 ms | 1840 KiB |
| 01-005.txt | WA | 1220 ms | 1944 KiB |
| 01-006.txt | AC | 73 ms | 1688 KiB |
| 01-007.txt | TLE | 2205 ms | 1684 KiB |
| 01-008.txt | WA | 1135 ms | 1856 KiB |
| 01-009.txt | TLE | 2205 ms | 2124 KiB |
| 01-010.txt | WA | 17 ms | 1652 KiB |
| 01-011.txt | TLE | 2205 ms | 1884 KiB |
| 01-012.txt | TLE | 2205 ms | 2264 KiB |
| 01-013.txt | TLE | 2205 ms | 2260 KiB |
| 01-014.txt | TLE | 2205 ms | 2236 KiB |
| 01-015.txt | TLE | 2205 ms | 2312 KiB |
| 01-016.txt | TLE | 2205 ms | 2264 KiB |
| 01-017.txt | TLE | 2205 ms | 2264 KiB |
| 01-018.txt | TLE | 2205 ms | 2312 KiB |
| 01-019.txt | TLE | 2205 ms | 2284 KiB |
| 01-020.txt | TLE | 2205 ms | 2252 KiB |
| 01-021.txt | TLE | 2205 ms | 2264 KiB |