結果

問題 No.1734 Decreasing Elements
ユーザー ああああ
提出日時 2024-01-23 10:53:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 158 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 265,852 KB
最終ジャッジ日時 2024-09-28 06:40:13
合計ジャッジ時間 7,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,840 KB
testcase_01 AC 35 ms
53,400 KB
testcase_02 AC 33 ms
52,684 KB
testcase_03 AC 35 ms
51,952 KB
testcase_04 AC 36 ms
52,776 KB
testcase_05 AC 35 ms
52,456 KB
testcase_06 AC 36 ms
52,280 KB
testcase_07 AC 44 ms
60,684 KB
testcase_08 AC 46 ms
63,480 KB
testcase_09 AC 43 ms
60,120 KB
testcase_10 AC 46 ms
63,164 KB
testcase_11 AC 123 ms
116,960 KB
testcase_12 AC 89 ms
90,968 KB
testcase_13 AC 125 ms
116,828 KB
testcase_14 AC 256 ms
224,868 KB
testcase_15 AC 192 ms
155,272 KB
testcase_16 AC 261 ms
173,992 KB
testcase_17 AC 381 ms
213,936 KB
testcase_18 AC 399 ms
217,232 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
z=0
for i in range(n) :
	if a[i] == 0 :
		z+=1
	else:
		a=[aj-a[i] if aj>=a[i] else aj for aj in a]
print(n-z)
0