結果

問題 No.8045 怪文書
ユーザー cielciel
提出日時 2019-04-02 20:34:28
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 74 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 122,864 KB
最終ジャッジ日時 2024-12-14 04:50:23
合計ジャッジ時間 12,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
19,108 KB
testcase_01 WA -
testcase_02 TLE -
testcase_03 WA -
testcase_04 AC 85 ms
18,976 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 AC 320 ms
90,144 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 83 ms
12,160 KB
testcase_10 WA -
testcase_11 AC 84 ms
12,288 KB
testcase_12 AC 87 ms
12,160 KB
testcase_13 AC 83 ms
12,288 KB
testcase_14 AC 85 ms
12,288 KB
testcase_15 AC 84 ms
12,160 KB
testcase_16 AC 84 ms
12,160 KB
testcase_17 AC 89 ms
12,160 KB
testcase_18 AC 89 ms
12,160 KB
testcase_19 AC 84 ms
12,288 KB
testcase_20 AC 85 ms
122,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i
p n>=m ? 0 : (1..n).reduce(:*)%(1..m).reduce(:*)
0