結果
問題 | No.79 過小評価ダメ・ゼッタイ |
ユーザー | funakoshi |
提出日時 | 2019-08-08 16:36:21 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 29,440 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 19:59:18 |
合計ジャッジ時間 | 3,046 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 0 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { int numofans,level; int cnt[10]={0}; scanf("%d",&numofans); for(int i=0;i<numofans;i++) { scanf("%d",&level); cnt[level]++; } int max=0; for(int i=1;i<=numofans;i++) { if(cnt[i]>=max) { max=cnt[i]; level=i; } } printf("%d",level); }