結果
問題 | No.706 多眼生物の調査 |
ユーザー | YamaKasa |
提出日時 | 2018-07-15 22:51:10 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 271 ms / 2,000 ms |
コード長 | 500 bytes |
コンパイル時間 | 2,647 ms |
コンパイル使用メモリ | 74,924 KB |
実行使用メモリ | 44,104 KB |
最終ジャッジ日時 | 2024-11-07 11:02:00 |
合計ジャッジ時間 | 4,533 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,604 KB |
testcase_01 | AC | 128 ms
41,156 KB |
testcase_02 | AC | 131 ms
41,280 KB |
testcase_03 | AC | 144 ms
41,320 KB |
testcase_04 | AC | 176 ms
41,776 KB |
testcase_05 | AC | 210 ms
42,372 KB |
testcase_06 | AC | 271 ms
44,104 KB |
testcase_07 | AC | 134 ms
41,292 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); int []d = new int[1001 - 2]; Arrays.fill(d, 0); for(int i = 0; i < N; i++) { String s = scan.next(); d[s.length() - 2] ++; } scan.close(); int max = 0; int index = 0; for(int i = 0; i < d.length; i++) { if(max <= d[i]) { index = i; max = d[i]; } } System.out.println(index); } }