結果

問題 No.687 E869120 and Constructing Array 1
ユーザー nebukuro09nebukuro09
提出日時 2018-05-18 22:20:38
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 1,000 ms
コード長 129 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 13:46:58
合計ジャッジ時間 1,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
for i in xrange(1, 11):
    for j in xrange(1, 11):
        if i + j == N:
            print i, j
            exit()
0