結果
問題 | No.1423 Triangle of Multiples |
ユーザー | ks2m |
提出日時 | 2021-03-12 21:31:12 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 925 bytes |
コンパイル時間 | 2,910 ms |
コンパイル使用メモリ | 88,364 KB |
実行使用メモリ | 62,240 KB |
最終ジャッジ日時 | 2024-10-14 11:41:01 |
合計ジャッジ時間 | 7,366 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 95 ms
45,452 KB |
testcase_01 | AC | 111 ms
40,364 KB |
testcase_02 | AC | 551 ms
45,616 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.Arrays; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(br.readLine()); PrintWriter pw = new PrintWriter(System.out); for (int z = 0; z < t; z++) { String[] sa = br.readLine().split(" "); Obj[] arr = new Obj[3]; for (int i = 0; i < 3; i++) { Obj o = new Obj(); o.i = i; o.a = Integer.parseInt(sa[i]); o.x = o.a; arr[i] = o; } Arrays.sort(arr, (o1, o2) -> o1.a - o2.a); while (arr[0].x + arr[1].x <= arr[2].x) { arr[0].x += arr[0].a; } Arrays.sort(arr, (o1, o2) -> o1.i - o2.i); System.out.println(arr[0].x + " " + arr[1].x + " " + arr[2].x); } pw.flush(); br.close(); } static class Obj { int i, a; long x; } }