結果

問題 No.1643 Not Substring
ユーザー 👑 tamatotamato
提出日時 2021-08-13 21:21:44
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 87,528 KB
実行使用メモリ 71,944 KB
最終ジャッジ日時 2023-07-27 05:57:27
合計ジャッジ時間 3,803 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,944 KB
testcase_01 AC 71 ms
71,716 KB
testcase_02 AC 69 ms
71,608 KB
testcase_03 AC 70 ms
71,476 KB
testcase_04 AC 74 ms
71,800 KB
testcase_05 AC 74 ms
71,888 KB
testcase_06 AC 74 ms
71,652 KB
testcase_07 AC 74 ms
71,684 KB
testcase_08 AC 76 ms
71,548 KB
testcase_09 AC 75 ms
71,656 KB
testcase_10 AC 71 ms
71,580 KB
testcase_11 AC 74 ms
71,676 KB
testcase_12 AC 73 ms
71,864 KB
testcase_13 AC 73 ms
71,480 KB
testcase_14 AC 74 ms
71,916 KB
testcase_15 AC 73 ms
71,736 KB
testcase_16 AC 77 ms
71,748 KB
testcase_17 AC 76 ms
71,832 KB
testcase_18 AC 77 ms
71,884 KB
testcase_19 AC 76 ms
71,464 KB
testcase_20 AC 78 ms
71,800 KB
testcase_21 AC 78 ms
71,784 KB
testcase_22 AC 77 ms
71,584 KB
testcase_23 AC 74 ms
71,820 KB
testcase_24 AC 75 ms
71,656 KB
testcase_25 AC 74 ms
71,776 KB
testcase_26 AC 75 ms
71,556 KB
testcase_27 AC 74 ms
71,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    S = input().rstrip('\n')

    print("a" * S.count("a") + "a")


if __name__ == '__main__':
    main()
0