結果

問題 No.687 E869120 and Constructing Array 1
ユーザー flippergoflippergo
提出日時 2025-01-05 13:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 108 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 53,444 KB
最終ジャッジ日時 2025-01-05 13:09:53
合計ジャッジ時間 2,939 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,192 KB
testcase_01 AC 33 ms
52,680 KB
testcase_02 AC 34 ms
52,104 KB
testcase_03 AC 33 ms
53,040 KB
testcase_04 AC 41 ms
52,824 KB
testcase_05 AC 34 ms
52,156 KB
testcase_06 AC 34 ms
53,076 KB
testcase_07 AC 34 ms
53,444 KB
testcase_08 AC 33 ms
52,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for a1 in range(1,10+1):
    a2 = N-a1
    if 1<=a2<=10:
        print(a1,a2)
        break
0