結果

問題 No.3034 7 problems
ユーザー cielciel
提出日時 2019-09-11 00:01:16
言語 Ruby
(3.3.0)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,536 KB
最終ジャッジ日時 2024-07-02 16:30:11
合計ジャッジ時間 34,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 445 ms
31,872 KB
testcase_01 AC 444 ms
31,616 KB
testcase_02 AC 648 ms
32,640 KB
testcase_03 AC 507 ms
32,512 KB
testcase_04 AC 512 ms
29,824 KB
testcase_05 AC 613 ms
30,296 KB
testcase_06 AC 594 ms
30,080 KB
testcase_07 AC 594 ms
33,280 KB
testcase_08 AC 569 ms
29,976 KB
testcase_09 AC 605 ms
30,064 KB
testcase_10 AC 522 ms
30,108 KB
testcase_11 AC 578 ms
32,896 KB
testcase_12 AC 538 ms
30,068 KB
testcase_13 AC 563 ms
32,896 KB
testcase_14 AC 558 ms
30,152 KB
testcase_15 AC 556 ms
29,980 KB
testcase_16 AC 553 ms
29,980 KB
testcase_17 AC 562 ms
33,408 KB
testcase_18 AC 687 ms
29,820 KB
testcase_19 AC 580 ms
29,852 KB
testcase_20 AC 594 ms
32,768 KB
testcase_21 AC 502 ms
29,952 KB
testcase_22 AC 645 ms
29,936 KB
testcase_23 AC 556 ms
32,640 KB
testcase_24 AC 647 ms
32,640 KB
testcase_25 AC 627 ms
30,064 KB
testcase_26 AC 501 ms
29,848 KB
testcase_27 AC 688 ms
30,068 KB
testcase_28 AC 619 ms
30,068 KB
testcase_29 AC 601 ms
29,668 KB
testcase_30 AC 495 ms
32,640 KB
testcase_31 AC 622 ms
33,024 KB
testcase_32 AC 545 ms
29,936 KB
testcase_33 AC 610 ms
30,108 KB
testcase_34 AC 504 ms
29,948 KB
testcase_35 AC 614 ms
32,768 KB
testcase_36 AC 567 ms
32,768 KB
testcase_37 AC 483 ms
30,108 KB
testcase_38 AC 606 ms
29,852 KB
testcase_39 AC 613 ms
30,108 KB
testcase_40 AC 650 ms
32,896 KB
testcase_41 AC 541 ms
29,816 KB
testcase_42 AC 609 ms
30,108 KB
testcase_43 AC 686 ms
32,768 KB
testcase_44 AC 515 ms
29,940 KB
testcase_45 AC 560 ms
32,896 KB
testcase_46 AC 532 ms
29,936 KB
testcase_47 AC 514 ms
30,108 KB
testcase_48 AC 532 ms
33,536 KB
testcase_49 AC 663 ms
29,808 KB
testcase_50 AC 525 ms
30,064 KB
testcase_51 AC 523 ms
29,852 KB
testcase_52 AC 444 ms
31,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M=10**9+7;F=[1,f=1];C=[0,0];f=1
2.upto(1e6){|i|F<<F[i-1]*i%M;C<<(C[i-1]*i+F[i-1])%M}
T=gets.to_i
(1..T).each{|i|
    i>1&&puts
	n=gets.to_i
	p n*n
	p n*(n*n+~-n)
	p T
	p 4*n*n+17
	p n.pow(n**3,M)
	p n
	p (n*C[n])%M
}
0