結果
問題 | No.79 過小評価ダメ・ゼッタイ |
ユーザー | ichyo |
提出日時 | 2014-11-27 23:25:23 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 252 ms / 5,000 ms |
コード長 | 295 bytes |
コンパイル時間 | 15,401 ms |
コンパイル使用メモリ | 220,980 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-06-26 07:12:50 |
合計ジャッジ時間 | 18,365 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
package main import "fmt" func main() { var n int fmt.Scanf("%d", &n) cnt := make([]int, 10) for i := 0; i < n; i++ { var x int fmt.Scanf("%d", &x) cnt[x] += 1 } ans := 6 for i := 6; i > 0; i-- { if cnt[ans] < cnt[i] { ans = i } } fmt.Println(ans) }