結果
| 問題 |
No.1841 Long Long
|
| コンテスト | |
| ユーザー |
satashun
|
| 提出日時 | 2023-05-16 12:33:18 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
ソースコード
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)
satashun