結果

問題 No.2815 Smaller than all
ユーザー 👑 potato167potato167
提出日時 2024-07-20 13:45:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 59 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 110,976 KB
最終ジャッジ日時 2024-07-20 13:45:49
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 46 ms
62,720 KB
testcase_03 AC 43 ms
61,696 KB
testcase_04 AC 77 ms
95,616 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,456 KB
testcase_08 AC 92 ms
110,976 KB
testcase_09 AC 90 ms
110,592 KB
testcase_10 AC 90 ms
110,208 KB
testcase_11 AC 90 ms
110,464 KB
testcase_12 AC 90 ms
110,976 KB
testcase_13 AC 103 ms
108,928 KB
testcase_14 AC 91 ms
110,696 KB
testcase_15 AC 91 ms
110,848 KB
testcase_16 AC 90 ms
109,440 KB
testcase_17 AC 87 ms
107,688 KB
testcase_18 AC 88 ms
108,928 KB
testcase_19 AC 91 ms
109,824 KB
testcase_20 AC 88 ms
107,520 KB
testcase_21 AC 91 ms
110,208 KB
testcase_22 AC 90 ms
109,824 KB
testcase_23 AC 88 ms
107,776 KB
testcase_24 AC 95 ms
109,440 KB
testcase_25 AC 90 ms
110,080 KB
testcase_26 AC 89 ms
108,544 KB
testcase_27 AC 89 ms
108,544 KB
testcase_28 AC 91 ms
109,952 KB
testcase_29 AC 89 ms
108,800 KB
testcase_30 AC 92 ms
110,464 KB
testcase_31 AC 91 ms
110,336 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,*A=map(int,open(0).read().split())
print(A.count(min(A)))
0