結果

問題 No.1146 土偶Ⅰ
ユーザー simansiman
提出日時 2020-08-06 04:45:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 11,868 KB
実行使用メモリ 16,124 KB
最終ジャッジ日時 2023-10-19 06:22:11
合計ジャッジ時間 5,510 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
16,028 KB
testcase_01 AC 89 ms
16,028 KB
testcase_02 AC 88 ms
16,028 KB
testcase_03 AC 106 ms
16,124 KB
testcase_04 AC 229 ms
16,124 KB
testcase_05 AC 110 ms
16,124 KB
testcase_06 AC 159 ms
16,124 KB
testcase_07 AC 207 ms
16,124 KB
testcase_08 AC 232 ms
16,124 KB
testcase_09 AC 132 ms
16,124 KB
testcase_10 AC 102 ms
16,124 KB
testcase_11 AC 149 ms
16,124 KB
testcase_12 AC 234 ms
16,124 KB
testcase_13 AC 86 ms
16,028 KB
testcase_14 AC 131 ms
16,124 KB
testcase_15 AC 206 ms
16,124 KB
testcase_16 AC 142 ms
16,124 KB
testcase_17 AC 86 ms
16,028 KB
testcase_18 AC 89 ms
16,028 KB
testcase_19 AC 134 ms
16,124 KB
testcase_20 AC 91 ms
16,028 KB
testcase_21 AC 102 ms
16,124 KB
testcase_22 AC 98 ms
16,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = N.times.map { gets.to_i }

puts A.combination(3).count { |list| list.inject(&:gcd) == 1 }
0