結果
問題 |
No.79 過小評価ダメ・ゼッタイ
|
ユーザー |
|
提出日時 | 2017-07-05 11:20:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 165 bytes |
コンパイル時間 | 377 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 13,536 KB |
最終ジャッジ日時 | 2024-10-05 19:48:25 |
合計ジャッジ時間 | 1,952 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 17 WA * 2 RE * 3 |
ソースコード
n = int(input()) s = [0]*(n+1) for i in list(map(int,input().split())): s[i] += 1 if s.count(max(s)) > 1: s[s.index(max(s))] -= 1 print(s.index(max(s)))