結果
問題 | No.2515 Similar Triangles |
ユーザー | ID 21712 |
提出日時 | 2024-10-14 10:42:01 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 154 bytes |
コンパイル時間 | 13,262 ms |
コンパイル使用メモリ | 226,352 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-14 10:42:15 |
合計ジャッジ時間 | 13,547 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,820 KB |
ソースコード
package main import . "fmt" func main() { var x1,y1,x2,y2 int Scan(&x1,&y1,&x2,&y2) if x1*y1==x2*y2 { Println("Yes") } else { Println("No") } }