結果

問題 No.687 E869120 and Constructing Array 1
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-15 09:34:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 116 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 53,444 KB
最終ジャッジ日時 2024-09-17 15:58:20
合計ジャッジ時間 1,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,984 KB
testcase_01 AC 33 ms
53,444 KB
testcase_02 AC 34 ms
51,780 KB
testcase_03 AC 34 ms
53,160 KB
testcase_04 AC 37 ms
52,184 KB
testcase_05 AC 34 ms
53,308 KB
testcase_06 AC 34 ms
52,976 KB
testcase_07 AC 33 ms
52,908 KB
testcase_08 AC 35 ms
52,444 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