結果

問題 No.1644 Eight Digits
ユーザー kotatsugamekotatsugame
提出日時 2021-08-13 21:27:12
言語 Ruby
(3.2.2)
結果
AC  
実行時間 219 ms / 1,000 ms
コード長 56 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 11,232 KB
実行使用メモリ 15,540 KB
最終ジャッジ日時 2023-07-27 03:18:01
合計ジャッジ時間 8,005 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
15,540 KB
testcase_01 AC 213 ms
15,112 KB
testcase_02 AC 211 ms
15,432 KB
testcase_03 AC 210 ms
15,232 KB
testcase_04 AC 210 ms
15,300 KB
testcase_05 AC 211 ms
15,236 KB
testcase_06 AC 211 ms
15,224 KB
testcase_07 AC 211 ms
15,472 KB
testcase_08 AC 212 ms
15,432 KB
testcase_09 AC 211 ms
15,316 KB
testcase_10 AC 211 ms
15,432 KB
testcase_11 AC 212 ms
15,316 KB
testcase_12 AC 211 ms
15,176 KB
testcase_13 AC 209 ms
15,276 KB
testcase_14 AC 212 ms
15,392 KB
testcase_15 AC 211 ms
15,400 KB
testcase_16 AC 213 ms
15,224 KB
testcase_17 AC 214 ms
15,316 KB
testcase_18 AC 216 ms
15,232 KB
testcase_19 AC 215 ms
15,452 KB
testcase_20 AC 218 ms
15,488 KB
testcase_21 AC 215 ms
15,472 KB
testcase_22 AC 215 ms
15,240 KB
testcase_23 AC 216 ms
15,316 KB
testcase_24 AC 215 ms
15,416 KB
testcase_25 AC 219 ms
15,344 KB
testcase_26 AC 219 ms
15,240 KB
testcase_27 AC 212 ms
15,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

k=eval *$<
p [*1..8].permutation.count{_1.join.to_i%k<1}
0