結果

問題 No.1033 乱数サイ
ユーザー ryusukeryusuke
提出日時 2021-10-05 15:49:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 81 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 87,128 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2023-09-30 08:31:46
合計ジャッジ時間 2,769 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,320 KB
testcase_01 AC 69 ms
71,560 KB
testcase_02 AC 68 ms
71,316 KB
testcase_03 WA -
testcase_04 AC 71 ms
71,464 KB
testcase_05 WA -
testcase_06 AC 69 ms
71,464 KB
testcase_07 AC 71 ms
71,408 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 69 ms
71,384 KB
testcase_11 WA -
testcase_12 AC 69 ms
71,120 KB
testcase_13 AC 67 ms
71,588 KB
testcase_14 AC 70 ms
71,308 KB
testcase_15 WA -
testcase_16 AC 69 ms
71,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int,input().split())
t = n * (n + 1) // 2 * k
print(t // (n + 1) // k)
0