結果

問題 No.3048 Order and Harmony
ユーザー kotatsugamekotatsugame
提出日時 2019-04-01 23:35:14
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 106 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,576 KB
最終ジャッジ日時 2024-11-27 04:52:26
合計ジャッジ時間 80,388 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
17,408 KB
testcase_01 AC 76 ms
24,320 KB
testcase_02 AC 83 ms
17,536 KB
testcase_03 TLE -
testcase_04 AC 78 ms
17,280 KB
testcase_05 AC 76 ms
24,320 KB
testcase_06 AC 80 ms
17,536 KB
testcase_07 AC 77 ms
24,064 KB
testcase_08 AC 81 ms
17,280 KB
testcase_09 AC 76 ms
24,576 KB
testcase_10 AC 81 ms
17,664 KB
testcase_11 AC 77 ms
24,320 KB
testcase_12 AC 74 ms
17,536 KB
testcase_13 AC 75 ms
24,576 KB
testcase_14 AC 76 ms
19,232 KB
testcase_15 AC 82 ms
17,408 KB
testcase_16 AC 76 ms
17,408 KB
testcase_17 AC 80 ms
24,448 KB
testcase_18 AC 82 ms
17,536 KB
testcase_19 AC 89 ms
24,576 KB
testcase_20 AC 81 ms
17,536 KB
testcase_21 AC 81 ms
24,064 KB
testcase_22 AC 81 ms
17,664 KB
testcase_23 AC 80 ms
24,576 KB
testcase_24 AC 77 ms
17,536 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 78 ms
24,192 KB
testcase_30 TLE -
testcase_31 AC 80 ms
24,064 KB
testcase_32 TLE -
testcase_33 AC 79 ms
24,576 KB
testcase_34 TLE -
testcase_35 AC 84 ms
24,064 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 175 ms
17,408 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 76 ms
24,192 KB
testcase_44 TLE -
testcase_45 AC 195 ms
24,320 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 79 ms
12,160 KB
testcase_50 TLE -
testcase_51 AC 75 ms
12,288 KB
testcase_52 AC 78 ms
12,160 KB
testcase_53 TLE -
testcase_54 AC 77 ms
12,160 KB
testcase_55 AC 76 ms
12,288 KB
testcase_56 TLE -
testcase_57 AC 75 ms
12,160 KB
testcase_58 AC 77 ms
12,288 KB
testcase_59 AC 79 ms
12,288 KB
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 AC 76 ms
12,160 KB
testcase_64 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

k=gets.to_i
(p 0;exit)if k%2==1
s=t=1
m=10**9+7
(k/2).times{|i|s*=k-i;s%=m;t*=i+1;t%=m}
p s*t.pow(m-2,m)%m
0