結果

問題 No.1643 Not Substring
ユーザー KudeKude
提出日時 2021-08-13 21:22:51
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 43 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 87,104 KB
実行使用メモリ 71,300 KB
最終ジャッジ日時 2023-07-27 06:06:15
合計ジャッジ時間 4,070 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,208 KB
testcase_01 AC 76 ms
71,144 KB
testcase_02 AC 75 ms
71,092 KB
testcase_03 AC 75 ms
71,136 KB
testcase_04 AC 76 ms
71,248 KB
testcase_05 AC 76 ms
71,208 KB
testcase_06 AC 77 ms
71,256 KB
testcase_07 AC 77 ms
71,296 KB
testcase_08 AC 77 ms
71,080 KB
testcase_09 AC 75 ms
70,948 KB
testcase_10 AC 75 ms
71,256 KB
testcase_11 AC 76 ms
70,728 KB
testcase_12 AC 76 ms
70,952 KB
testcase_13 AC 76 ms
70,728 KB
testcase_14 AC 77 ms
71,000 KB
testcase_15 AC 77 ms
71,064 KB
testcase_16 AC 76 ms
71,204 KB
testcase_17 AC 76 ms
71,080 KB
testcase_18 AC 76 ms
71,256 KB
testcase_19 AC 75 ms
71,300 KB
testcase_20 AC 77 ms
71,180 KB
testcase_21 AC 76 ms
71,060 KB
testcase_22 AC 77 ms
71,212 KB
testcase_23 AC 76 ms
71,116 KB
testcase_24 AC 76 ms
70,888 KB
testcase_25 AC 76 ms
71,052 KB
testcase_26 AC 76 ms
71,180 KB
testcase_27 AC 76 ms
71,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input().count('a')
print('a' * (n + 1))
0