結果

問題 No.1841 Long Long
ユーザー yudai1102jpyudai1102jp
提出日時 2022-02-18 21:20:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 10,936 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2023-09-11 18:22:46
合計ジャッジ時間 1,237 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,628 KB
testcase_01 AC 19 ms
8,792 KB
testcase_02 AC 19 ms
8,820 KB
testcase_03 AC 19 ms
8,700 KB
testcase_04 AC 20 ms
8,704 KB
testcase_05 AC 19 ms
8,832 KB
testcase_06 AC 19 ms
8,736 KB
testcase_07 AC 19 ms
8,804 KB
testcase_08 AC 19 ms
8,820 KB
testcase_09 AC 20 ms
8,800 KB
testcase_10 AC 19 ms
8,780 KB
testcase_11 AC 20 ms
8,668 KB
testcase_12 AC 20 ms
8,816 KB
testcase_13 AC 20 ms
8,740 KB
testcase_14 AC 20 ms
8,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
import heapq
from collections import deque
sys.setrecursionlimit(500*500)

stdin = sys.stdin


def YES(): print('Yes')
def NO(): print('No')
def TAKAHASHI(): print('Takahashi')
def AOKI(): print("Aoki")
def ns(): return stdin.readline().strip()
def ni(): return int(ns())
def na(): return list(map(int, stdin.readline().split()))
def nz(): return list(map(lambda x: int(x)-1, stdin.readline().split()))


MOD = int(1e9+7)


def YES():
    print('Yes')


def NO():
    print('No')


def TAKAHASHI():
    print('Takahashi')


def AOKI():
    print("Aoki")


N=ni()

print('Long'*N)
0