結果

問題 No.1512 作文
ユーザー 330Xs330Xs
提出日時 2022-02-04 18:18:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 67,264 KB
最終ジャッジ日時 2024-06-11 11:21:31
合計ジャッジ時間 28,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 475 ms
43,512 KB
testcase_02 AC 468 ms
43,380 KB
testcase_03 AC 467 ms
43,660 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 482 ms
43,656 KB
testcase_10 AC 480 ms
43,508 KB
testcase_11 AC 469 ms
43,508 KB
testcase_12 AC 471 ms
43,504 KB
testcase_13 AC 475 ms
43,532 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 496 ms
43,404 KB
testcase_22 AC 451 ms
43,652 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 447 ms
43,788 KB
testcase_27 AC 457 ms
43,792 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 552 ms
44,100 KB
testcase_36 AC 552 ms
44,232 KB
testcase_37 AC 504 ms
43,660 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 WA -
testcase_41 AC 1,584 ms
66,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
lis = []
for _ in range(n):
    a = list(map(str,input()))
    flag = True
    for i in range(len(a)-1):
        if(a[i] > a[i+1]):
            flag = False
            break
    if(flag):
        lis.append(a)

if(len(lis) == 0):
    print(0)
else:
    lis_sort = np.sort(lis,axis=-1)
    i = 0
    j = 1
    ans = len(lis_sort[0])
    while((i < len(lis)) & (j < len(lis))):
        if(lis_sort[i][-1] <= lis_sort[j][0]):
            ans += len(lis_sort[j])
            i = j
        j += 1
    print(ans)
            
0