:heavy_check_mark: examples/python/hello_world.test.py

Depends on

Code

# competitive-verifier: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/1/ITP1_1_A
import examples.python.hello_world

def main():
    print(examples.python.hello_world.get_hello_world())

if __name__ == '__main__':
    main()

Test cases

Env Name Status Elapsed Memory
Python judge_data :heavy_check_mark: AC 22 ms 11 MB
Back to top page