結果

問題 No.1841 Long Long
ユーザー satashunsatashun
提出日時 2023-05-16 12:33:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 10,792 KB
実行使用メモリ 29,592 KB
最終ジャッジ日時 2023-08-21 04:52:14
合計ジャッジ時間 6,010 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
29,476 KB
testcase_01 AC 135 ms
29,480 KB
testcase_02 AC 137 ms
29,536 KB
testcase_03 AC 137 ms
29,492 KB
testcase_04 AC 138 ms
29,592 KB
testcase_05 AC 137 ms
29,488 KB
testcase_06 AC 137 ms
29,392 KB
testcase_07 AC 136 ms
29,396 KB
testcase_08 AC 137 ms
29,396 KB
testcase_09 AC 135 ms
29,468 KB
testcase_10 AC 134 ms
29,504 KB
testcase_11 AC 136 ms
29,564 KB
testcase_12 AC 135 ms
29,420 KB
testcase_13 AC 136 ms
29,448 KB
testcase_14 AC 135 ms
29,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools
import numpy as np

sys.setrecursionlimit(10 ** 9)
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


def read_np(dtype=np.int64):
    return np.fromstring(read().decode(), dtype=dtype, sep=' ')


def readline_np(dtype=np.int64):
    return np.fromstring(readline().decode(), dtype=dtype, sep=' ')

N=int(input())
S='Long'*N
print(S)
0