結果

問題 No.796 well known
ユーザー 910_sendai910_sendai
提出日時 2019-03-17 17:22:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-07 04:50:09
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 89 ms
11,392 KB
testcase_05 AC 110 ms
11,520 KB
testcase_06 AC 127 ms
11,776 KB
testcase_07 AC 48 ms
11,008 KB
testcase_08 AC 107 ms
11,520 KB
testcase_09 AC 78 ms
11,264 KB
testcase_10 AC 141 ms
11,648 KB
testcase_11 AC 37 ms
10,880 KB
testcase_12 AC 63 ms
11,264 KB
testcase_13 AC 112 ms
11,392 KB
testcase_14 AC 54 ms
11,008 KB
testcase_15 AC 67 ms
11,264 KB
testcase_16 AC 113 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
arr = [1]*N
arr[0] = 3
pi = 1 
while not ((sum(arr) % 3 == 1) and (sum(arr) < 312456) and (pi % 3 == 0)):
    pi = 1
    for i in range(len(arr)):
        pi *= arr[i]
    arr[1] += 1 

for i in range(len(arr)):
    print(arr[i], end = ' ')
0