結果

問題 No.9000 Hello World! (テスト用)
ユーザー 21kazu1321kazu13
提出日時 2023-07-07 20:39:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 5,000 ms
コード長 1,071 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 87,144 KB
実行使用メモリ 71,976 KB
最終ジャッジ日時 2023-09-28 21:25:27
合計ジャッジ時間 1,333 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
71,668 KB
testcase_01 AC 101 ms
71,636 KB
testcase_02 AC 102 ms
71,764 KB
testcase_03 AC 101 ms
71,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
from bisect import bisect, bisect_left, bisect_right, insort, insort_left, insort_right  # type: ignore
from collections import Counter, defaultdict, deque  # type: ignore
from math import gcd  # type: ignore
from heapq import heapify, heappop, heappush, heappushpop, heapreplace, merge  # type: ignore
from itertools import accumulate, combinations, permutations, product  # type: ignore

def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def MI(): return map(int, sys.stdin.buffer.readline().split())
def I(): return int(sys.stdin.buffer.readline())
def LS(): return sys.stdin.buffer.readline().rstrip().decode("utf-8").split()
def S(): return sys.stdin.buffer.readline().rstrip().decode("utf-8")
def IR(n): return [I() for _ in range(n)]
def LIR(n): return [LI() for _ in range(n)]
def SR(n): return [S() for _ in range(n)]
def LSR(n): return [LS() for _ in range(n)]
def SRL(n): return [list(S()) for _ in range(n)]
def MSRL(n): return [[int(i) for i in list(S())] for _ in range(n)]

s = S()
print('Hello World!')
0