結果
問題 | No.706 多眼生物の調査 |
ユーザー | Pump0129 |
提出日時 | 2018-07-23 03:43:38 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 309 ms / 2,000 ms |
コード長 | 673 bytes |
コンパイル時間 | 2,202 ms |
コンパイル使用メモリ | 74,428 KB |
実行使用メモリ | 57,804 KB |
最終ジャッジ日時 | 2024-06-07 20:25:32 |
合計ジャッジ時間 | 4,206 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
53,868 KB |
testcase_01 | AC | 131 ms
53,868 KB |
testcase_02 | AC | 131 ms
54,204 KB |
testcase_03 | AC | 151 ms
53,712 KB |
testcase_04 | AC | 171 ms
54,164 KB |
testcase_05 | AC | 227 ms
54,680 KB |
testcase_06 | AC | 309 ms
57,804 KB |
testcase_07 | AC | 131 ms
54,176 KB |
ソースコード
package net.ipipip0129.yukicoder.no706; import java.util.Scanner; class Main { public static void main(String[] args) { int[] cnt_list = new int[1001]; Scanner scan = new Scanner(System.in); int num = Integer.parseInt(scan.nextLine()); for (int i = 0; i < num; i++) { cnt_list[scan.nextLine().length() - 2]++; } int max_index = 0; int max_num = 0; for (int i = 0; i < 1001; i++) { if (max_num <= cnt_list[i]) { max_index = i; max_num = cnt_list[i]; } } System.out.println(max_index); } }