結果

問題 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
コンパイル時間 1,118 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 6,232 KB
最終ジャッジ日時 2023-09-10 22:56:19
合計ジャッジ時間 2,022 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,188 KB
testcase_01 AC 11 ms
6,232 KB
testcase_02 AC 12 ms
6,132 KB
testcase_03 AC 12 ms
6,044 KB
testcase_04 AC 11 ms
6,116 KB
testcase_05 AC 12 ms
6,068 KB
testcase_06 AC 11 ms
5,996 KB
testcase_07 AC 12 ms
6,012 KB
testcase_08 AC 12 ms
5,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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