結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
|
提出日時 | 2025-10-04 12:52:05 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 434 bytes |
コンパイル時間 | 4,070 ms |
コンパイル使用メモリ | 81,928 KB |
実行使用メモリ | 53,076 KB |
最終ジャッジ日時 | 2025-10-04 12:52:16 |
合計ジャッジ時間 | 1,939 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
import sys sys.setrecursionlimit(10**7) def ii(): return int(input()) def ist(): return input().split() def mi(d=0): return map(lambda x:int(x)-d,input().split()) def lmi(d=0): return list(map(lambda x:int(x)-d,input().split())) INF = float("inf") def answer(s): print(s) exit() def cross(xy): x,y = xy return (x+1,y),(x-1,y),(x,y+1),(x,y-1) ################################################ print("Hello World!")