結果

問題 No.687 E869120 and Constructing Array 1
ユーザー Haruki0804SHaruki0804S
提出日時 2018-10-22 12:05:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 136 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-19 03:39:50
合計ジャッジ時間 1,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,008 KB
testcase_01 AC 34 ms
11,136 KB
testcase_02 AC 34 ms
11,008 KB
testcase_03 AC 35 ms
10,880 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 33 ms
11,008 KB
testcase_06 AC 34 ms
11,136 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 34 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
N=int(input())
b=0
while True:
    a=random.randrange(1,(min(N,11)))
    b=N-a

    if(b < 11):
        break
print(a,b)

0