結果
問題 | No.1423 Triangle of Multiples |
ユーザー | ytft |
提出日時 | 2022-03-22 03:24:24 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 123 ms / 2,000 ms |
コード長 | 196 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 82,204 KB |
実行使用メモリ | 77,284 KB |
最終ジャッジ日時 | 2024-10-09 18:13:42 |
合計ジャッジ時間 | 1,218 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,748 KB |
testcase_01 | AC | 38 ms
52,964 KB |
testcase_02 | AC | 123 ms
77,124 KB |
testcase_03 | AC | 121 ms
77,284 KB |
testcase_04 | AC | 119 ms
77,100 KB |
ソースコード
import sys input=lambda:sys.stdin.readline().rstrip() def solve(): A=list(map(int,input().split())) A[A.index(min(A))]*=(sum(A)-1)//min(A)-1 print(*A) T=int(input()) for i in range(T): solve()