結果

問題 No.1734 Decreasing Elements
ユーザー ああああ
提出日時 2024-01-23 10:55:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 158 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 39,896 KB
最終ジャッジ日時 2024-09-28 06:40:29
合計ジャッジ時間 13,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
39,896 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 35 ms
10,496 KB
testcase_08 AC 35 ms
10,624 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 41 ms
10,752 KB
testcase_11 AC 459 ms
18,496 KB
testcase_12 AC 229 ms
16,956 KB
testcase_13 AC 471 ms
19,684 KB
testcase_14 AC 1,379 ms
29,284 KB
testcase_15 AC 755 ms
22,008 KB
testcase_16 AC 1,133 ms
29,280 KB
testcase_17 AC 1,753 ms
29,284 KB
testcase_18 AC 1,690 ms
29,280 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