Esempio n. 1
0
    # ファイルのフォーマットチェック
    program = Program(program_file_abspath)
    if program.check_invalid_extension():
        logger.warning('Invalid File extention')
        sys.exit(0)

    # testcase 取得
    testcase = TestCase(problem_URL, problem_dir, testcase_preffix)
    testcase.get_local_testcases()
    if len(testcase.testcase_files) == 0 or redownload:
        testcase.get_samples()
        testcase.get_local_testcases()
    if len(testcase.testcase_files) == 0:
        logger.warning('no testcases')
        sys.exit(0)

    # コンパイル、実行コマンドの準備
    program.compile()
    program.make_test_command()

    # 全テストケースチェック
    testcase.test_all_testcase(program.execute_command)
    testcase.display()

    # submit
    if testcase.all_status == CONFIG.AC and submit:
        atcoder = AtCoder()
        atcoder.login()
        atcoder.submit_sourcecode(problem_URL, program_filepath)