結果

問題 No.1389 Clumsy Calculation
ユーザー KeroruKeroru
提出日時 2021-02-12 21:42:47
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 58 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 86,864 KB
実行使用メモリ 116,360 KB
最終ジャッジ日時 2023-09-27 03:26:07
合計ジャッジ時間 5,119 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,332 KB
testcase_01 AC 74 ms
71,400 KB
testcase_02 AC 72 ms
71,304 KB
testcase_03 AC 77 ms
75,920 KB
testcase_04 AC 78 ms
75,892 KB
testcase_05 AC 78 ms
75,744 KB
testcase_06 AC 78 ms
75,864 KB
testcase_07 AC 78 ms
75,856 KB
testcase_08 AC 73 ms
71,260 KB
testcase_09 AC 122 ms
116,360 KB
testcase_10 AC 113 ms
109,224 KB
testcase_11 AC 78 ms
75,656 KB
testcase_12 AC 78 ms
75,748 KB
testcase_13 AC 79 ms
75,848 KB
testcase_14 AC 118 ms
113,808 KB
testcase_15 AC 119 ms
113,832 KB
testcase_16 AC 119 ms
114,008 KB
testcase_17 AC 122 ms
114,808 KB
testcase_18 AC 119 ms
115,008 KB
testcase_19 AC 121 ms
114,768 KB
testcase_20 AC 121 ms
114,732 KB
testcase_21 AC 121 ms
114,728 KB
testcase_22 AC 121 ms
114,812 KB
testcase_23 AC 119 ms
114,952 KB
testcase_24 AC 119 ms
114,880 KB
testcase_25 AC 119 ms
114,620 KB
testcase_26 AC 116 ms
113,332 KB
testcase_27 AC 122 ms
113,880 KB
testcase_28 AC 125 ms
114,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,*a=map(int,open(0).read().split())
print(sum(a)-x*~-n)
0