結果

問題 No.1841 Long Long
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2022-07-03 05:48:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 87,020 KB
実行使用メモリ 71,512 KB
最終ジャッジ日時 2023-08-19 01:45:56
合計ジャッジ時間 2,298 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
71,348 KB
testcase_01 AC 59 ms
71,304 KB
testcase_02 AC 65 ms
71,372 KB
testcase_03 AC 62 ms
71,276 KB
testcase_04 AC 60 ms
71,300 KB
testcase_05 AC 60 ms
71,040 KB
testcase_06 AC 60 ms
71,512 KB
testcase_07 AC 60 ms
71,220 KB
testcase_08 AC 60 ms
71,296 KB
testcase_09 AC 60 ms
71,220 KB
testcase_10 AC 61 ms
71,304 KB
testcase_11 AC 62 ms
71,456 KB
testcase_12 AC 61 ms
71,348 KB
testcase_13 AC 60 ms
71,240 KB
testcase_14 AC 59 ms
71,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    ans = ""
    for _ in range(n):
        ans += "Long"
    print(ans)


main()
0