結果
問題 |
No.427 テレビ
|
ユーザー |
|
提出日時 | 2021-06-18 00:29:05 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 206 bytes |
コンパイル時間 | 9,635 ms |
コンパイル使用メモリ | 232,576 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-11 18:34:35 |
合計ジャッジ時間 | 10,032 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
package main import ( "fmt" ) func main() { var width, height, c, d int fmt.Scan(&width, &height) c = 3 * width d = 4 * height if c == d { fmt.Println("TATE") } else { fmt.Println("YOKO") } }