結果

問題 No.254 文字列の構成
ユーザー niyarinniyarin
提出日時 2016-11-01 17:52:20
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 52 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 815,116 KB
最終ジャッジ日時 2024-11-25 01:00:55
合計ジャッジ時間 129,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 11 ms
13,636 KB
testcase_02 AC 11 ms
13,636 KB
testcase_03 MLE -
testcase_04 AC 10 ms
12,064 KB
testcase_05 MLE -
testcase_06 AC 11 ms
13,636 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 10 ms
6,820 KB
testcase_10 MLE -
testcase_11 AC 10 ms
6,816 KB
testcase_12 AC 9 ms
6,816 KB
testcase_13 AC 10 ms
6,816 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 OLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 OLE -
testcase_21 MLE -
testcase_22 OLE -
testcase_23 OLE -
testcase_24 OLE -
testcase_25 OLE -
testcase_26 OLE -
testcase_27 OLE -
testcase_28 OLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
a = N/3
b = N%3
print "xyz"*a + "ab"[:b]
0