結果

問題 No.1841 Long Long
ユーザー satashunsatashun
提出日時 2023-05-16 12:33:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 874 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 80,792 KB
最終ジャッジ日時 2024-12-14 13:36:47
合計ジャッジ時間 12,347 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 874 ms
43,852 KB
testcase_01 AC 523 ms
43,992 KB
testcase_02 AC 526 ms
43,980 KB
testcase_03 AC 529 ms
43,860 KB
testcase_04 AC 527 ms
44,112 KB
testcase_05 AC 524 ms
43,960 KB
testcase_06 AC 525 ms
43,728 KB
testcase_07 AC 526 ms
43,732 KB
testcase_08 AC 535 ms
43,864 KB
testcase_09 AC 524 ms
44,116 KB
testcase_10 AC 529 ms
43,596 KB
testcase_11 AC 528 ms
43,860 KB
testcase_12 AC 528 ms
44,240 KB
testcase_13 AC 529 ms
44,112 KB
testcase_14 AC 523 ms
80,792 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