結果

問題 No.2737 Compound Word
ユーザー koufu193koufu193
提出日時 2024-04-21 09:02:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 77,860 KB
実行使用メモリ 41,916 KB
最終ジャッジ日時 2024-10-13 07:55:08
合計ジャッジ時間 6,967 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,088 KB
testcase_01 AC 123 ms
41,160 KB
testcase_02 AC 119 ms
41,164 KB
testcase_03 AC 117 ms
41,092 KB
testcase_04 AC 118 ms
41,260 KB
testcase_05 AC 121 ms
41,112 KB
testcase_06 AC 119 ms
41,216 KB
testcase_07 AC 124 ms
40,960 KB
testcase_08 AC 126 ms
41,124 KB
testcase_09 AC 137 ms
41,916 KB
testcase_10 AC 129 ms
41,896 KB
testcase_11 AC 122 ms
41,104 KB
testcase_12 AC 119 ms
41,020 KB
testcase_13 AC 119 ms
41,192 KB
testcase_14 AC 109 ms
40,376 KB
testcase_15 AC 120 ms
41,360 KB
testcase_16 AC 135 ms
41,212 KB
testcase_17 AC 135 ms
41,248 KB
testcase_18 AC 120 ms
40,552 KB
testcase_19 AC 109 ms
40,172 KB
testcase_20 AC 131 ms
40,856 KB
testcase_21 AC 126 ms
41,048 KB
testcase_22 AC 115 ms
39,984 KB
testcase_23 AC 132 ms
41,496 KB
testcase_24 AC 128 ms
41,416 KB
testcase_25 AC 131 ms
41,276 KB
testcase_26 AC 128 ms
41,768 KB
testcase_27 AC 128 ms
41,500 KB
testcase_28 AC 130 ms
41,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        int len=Integer.parseInt(sc.nextLine());
        List<String> list=new ArrayList<>();
        Set<String> made=new HashSet<>(len*len);
        for(int i=0;i<len;i++){
            list.add(sc.nextLine());
        }
        for(int i=0;i<len;i++){
            for(int j=0;j<len;j++){
                if(i==j) continue;
                made.add(list.get(i)+list.get(j));
            }
        }
        System.out.println(made.size());
    }
}
0