結果

問題 No.701 ひとりしりとり
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-31 22:22:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 76,352 KB
最終ジャッジ日時 2024-10-31 22:22:23
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,332 KB
testcase_01 AC 37 ms
53,004 KB
testcase_02 AC 37 ms
52,748 KB
testcase_03 AC 37 ms
53,084 KB
testcase_04 AC 36 ms
53,112 KB
testcase_05 AC 36 ms
53,068 KB
testcase_06 AC 38 ms
52,784 KB
testcase_07 AC 37 ms
52,872 KB
testcase_08 AC 39 ms
57,968 KB
testcase_09 AC 45 ms
60,636 KB
testcase_10 AC 56 ms
73,564 KB
testcase_11 AC 94 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

N=int(input())
for i in product("abc",repeat=18):
	if N==1:
		print("an")
		break
	print("a"+"".join(i)+"a")
	N-=1
0