結果

問題 No.2198 Concon Substrings (COuNt-CONstruct Version)
ユーザー rlangevinrlangevin
提出日時 2023-01-20 22:51:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,496 KB
実行使用メモリ 72,432 KB
最終ジャッジ日時 2024-06-23 10:51:09
合計ジャッジ時間 13,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
67,568 KB
testcase_01 AC 50 ms
67,380 KB
testcase_02 AC 50 ms
68,968 KB
testcase_03 AC 50 ms
67,276 KB
testcase_04 AC 53 ms
67,344 KB
testcase_05 AC 49 ms
68,544 KB
testcase_06 AC 50 ms
68,148 KB
testcase_07 AC 50 ms
67,652 KB
testcase_08 AC 50 ms
67,752 KB
testcase_09 AC 51 ms
68,428 KB
testcase_10 AC 53 ms
68,428 KB
testcase_11 AC 51 ms
69,112 KB
testcase_12 AC 50 ms
67,588 KB
testcase_13 AC 50 ms
67,184 KB
testcase_14 AC 52 ms
68,400 KB
testcase_15 AC 57 ms
71,288 KB
testcase_16 AC 50 ms
66,820 KB
testcase_17 WA -
testcase_18 AC 51 ms
66,932 KB
testcase_19 AC 50 ms
68,204 KB
testcase_20 AC 51 ms
67,772 KB
testcase_21 AC 52 ms
68,020 KB
testcase_22 WA -
testcase_23 AC 54 ms
68,608 KB
testcase_24 AC 51 ms
66,792 KB
testcase_25 AC 50 ms
67,588 KB
testcase_26 AC 53 ms
67,144 KB
testcase_27 AC 57 ms
71,360 KB
testcase_28 AC 50 ms
66,840 KB
testcase_29 AC 50 ms
66,504 KB
testcase_30 AC 49 ms
68,044 KB
testcase_31 AC 50 ms
66,708 KB
testcase_32 WA -
testcase_33 AC 51 ms
66,900 KB
testcase_34 WA -
testcase_35 AC 50 ms
66,356 KB
testcase_36 WA -
testcase_37 AC 51 ms
67,080 KB
testcase_38 AC 50 ms
67,612 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 51 ms
67,676 KB
testcase_42 AC 50 ms
67,808 KB
testcase_43 WA -
testcase_44 AC 50 ms
67,716 KB
testcase_45 AC 50 ms
67,516 KB
testcase_46 AC 51 ms
69,500 KB
testcase_47 WA -
testcase_48 AC 52 ms
68,976 KB
testcase_49 AC 51 ms
68,788 KB
testcase_50 AC 54 ms
69,232 KB
testcase_51 AC 53 ms
67,980 KB
testcase_52 AC 57 ms
67,616 KB
testcase_53 WA -
testcase_54 AC 51 ms
67,752 KB
testcase_55 WA -
testcase_56 AC 50 ms
67,144 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 50 ms
68,032 KB
testcase_60 AC 49 ms
67,888 KB
testcase_61 AC 50 ms
67,604 KB
testcase_62 AC 50 ms
67,788 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 56 ms
71,472 KB
testcase_66 AC 56 ms
70,804 KB
testcase_67 WA -
testcase_68 AC 52 ms
69,160 KB
testcase_69 AC 54 ms
70,024 KB
testcase_70 AC 57 ms
72,432 KB
testcase_71 AC 55 ms
71,396 KB
testcase_72 AC 51 ms
66,972 KB
testcase_73 WA -
testcase_74 AC 57 ms
69,668 KB
testcase_75 AC 54 ms
71,484 KB
testcase_76 AC 53 ms
68,720 KB
testcase_77 WA -
testcase_78 AC 55 ms
71,644 KB
testcase_79 WA -
testcase_80 AC 52 ms
69,104 KB
testcase_81 AC 55 ms
70,836 KB
testcase_82 WA -
testcase_83 WA -
testcase_84 AC 53 ms
68,356 KB
testcase_85 WA -
testcase_86 AC 56 ms
70,424 KB
testcase_87 WA -
testcase_88 AC 50 ms
68,720 KB
testcase_89 AC 54 ms
70,120 KB
testcase_90 AC 56 ms
70,160 KB
testcase_91 AC 57 ms
70,840 KB
testcase_92 AC 56 ms
70,068 KB
testcase_93 AC 52 ms
69,416 KB
testcase_94 WA -
testcase_95 AC 56 ms
69,948 KB
testcase_96 AC 55 ms
70,452 KB
testcase_97 AC 55 ms
71,028 KB
testcase_98 WA -
testcase_99 WA -
testcase_100 WA -
testcase_101 AC 52 ms
69,160 KB
testcase_102 AC 55 ms
70,440 KB
testcase_103 AC 57 ms
69,816 KB
testcase_104 WA -
testcase_105 WA -
testcase_106 AC 55 ms
71,300 KB
testcase_107 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def Gauss(n):
    return (n + 1) * (n + 2)//2

M = int(input())
S = set()
for i in range(19999, -1, -1):
    if M >= Gauss(i):
        S.add(i)
        M -= Gauss(i)
ans = []
for i in range(20000):
    if i in S:
        ans.append("con")
    else:
        ans.append("co")
print(*ans, sep="")
0