結果

問題 No.687 E869120 and Constructing Array 1
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-15 09:34:48
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 116 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 53,528 KB
最終ジャッジ日時 2023-10-17 18:41:20
合計ジャッジ時間 1,716 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,528 KB
testcase_01 AC 37 ms
53,528 KB
testcase_02 AC 37 ms
53,528 KB
testcase_03 AC 37 ms
53,528 KB
testcase_04 AC 37 ms
53,528 KB
testcase_05 AC 38 ms
53,528 KB
testcase_06 AC 37 ms
53,528 KB
testcase_07 AC 37 ms
53,528 KB
testcase_08 AC 37 ms
53,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(1, n):
    if 1 <= i <= 10 and 1 <= n-i <= 10:
        print(i, n-i)
        exit()
0