結果

問題 No.1671 Permutation Tour
ユーザー simansiman
提出日時 2021-12-25 18:59:30
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 62 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 11,860 KB
実行使用メモリ 16,088 KB
最終ジャッジ日時 2023-10-21 20:35:50
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
16,088 KB
testcase_01 AC 81 ms
16,088 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 80 ms
16,088 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 79 ms
16,088 KB
testcase_08 AC 76 ms
16,088 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 78 ms
16,088 KB
testcase_12 AC 78 ms
16,088 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 78 ms
16,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
MOD = 10 ** 9 + 7

puts (N * (N + 1) / 3) % MOD
0