結果
問題 | No.73 helloworld |
ユーザー | あかりき |
提出日時 | 2021-02-08 12:56:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 5,000 ms |
コード長 | 275 bytes |
コンパイル時間 | 402 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,352 KB |
最終ジャッジ日時 | 2024-07-05 09:16:22 |
合計ジャッジ時間 | 1,517 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,352 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | AC | 37 ms
51,968 KB |
testcase_03 | AC | 37 ms
52,096 KB |
testcase_04 | AC | 37 ms
51,968 KB |
testcase_05 | AC | 38 ms
52,224 KB |
testcase_06 | AC | 39 ms
51,968 KB |
testcase_07 | AC | 38 ms
51,584 KB |
testcase_08 | AC | 36 ms
51,712 KB |
testcase_09 | AC | 37 ms
51,712 KB |
testcase_10 | AC | 36 ms
52,224 KB |
testcase_11 | AC | 38 ms
51,876 KB |
testcase_12 | AC | 38 ms
51,968 KB |
testcase_13 | AC | 38 ms
51,584 KB |
ソースコード
c=[int(input()) for i in range(26)] d=max(c[3],0) e=max(c[4],0) h=max(c[7],0) l=0 if c[11]>=3: for i in range(2,c[11]): l=max(l,i*(i-1)//2*(c[11]-i)) o=0 if c[14]>=2: for i in range(1,c[14]): o=max(o,i*(c[14]-i)) r=max(c[17],0) w=max(c[22],0) print(d*e*h*l*o*r*w)