From cc806da2903899d4a2e7edda276ae2a47b0f413c Mon Sep 17 00:00:00 2001 From: HUA Yang Date: Thu, 27 Sep 2018 12:50:22 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90update=E3=80=91=E7=AC=94=E8=AF=95-iHan?= =?UTF-8?q?dy-180927?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\347\254\224\350\257\225-iHandy-180927.md" | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git "a/D-\347\254\224\350\257\225\351\235\242\347\273\217/\347\254\224\350\257\225-iHandy-180927.md" "b/D-\347\254\224\350\257\225\351\235\242\347\273\217/\347\254\224\350\257\225-iHandy-180927.md" index 3a7e15bb..e5036e04 100644 --- "a/D-\347\254\224\350\257\225\351\235\242\347\273\217/\347\254\224\350\257\225-iHandy-180927.md" +++ "b/D-\347\254\224\350\257\225\351\235\242\347\273\217/\347\254\224\350\257\225-iHandy-180927.md" @@ -39,10 +39,12 @@ s.sort(reverse=True) ans = ''.join(s) -print(int(ans)) +print(int(ans)) # 转 int ``` **自定义排序**(80%) +- 代码应该没什么问题,最后把结果转成 `int/long long` 应该就能 AC 了——可能有一个用例是全 0 +- 上面用贪心的时候还记得转 int,这里就忘了... ```C++ #include #include @@ -72,7 +74,7 @@ int main() { for (int i=0; i < n; i++) cin >> ns[i]; - cout << foo(ns); + cout << foo(ns); // 这里把结果转成整型应该就行了 return 0; } ``` \ No newline at end of file