結果
| 問題 | No.3609 Trio Plus |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-06 15:13:47 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 118 bytes |
| 記録 | |
| コンパイル時間 | 248 ms |
| コンパイル使用メモリ | 96,232 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-06 15:14:14 |
| 合計ジャッジ時間 | 2,216 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 |
ソースコード
A,B,C=map(int,input().split()) ans=str(A+B+C) if A*B*C==1: ans="Infinity" print(str(A)+"+"+str(B)+"+"+str(C)+"="+ans)