結果

問題 No.687 E869120 and Constructing Array 1
ユーザー McGregorsh
提出日時 2023-04-04 22:22:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 105 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-10-01 12:27:04
合計ジャッジ時間 1,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(1, 11):
    b = N - i
    if 1<=b<=10:
        print(i, b)
        exit()
0