結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-06-14 22:09:49 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 188 bytes |
| コンパイル時間 | 195 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 12,772 KB |
| 最終ジャッジ日時 | 2024-09-24 23:21:11 |
| 合計ジャッジ時間 | 2,051 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 16 WA * 6 |
ソースコード
# your code goes here
N=int(input())
L=[int(i) for i in input().split()]
V=[0]*7
for i in range(N):
V[L[i]]+=1
m=0
for i in range(7):
if m<V[i]:
m=V[i]
a=i
print(a)
rocoder