結果
問題 | No.2371 最大の試練それは起床 |
ユーザー |
|
提出日時 | 2024-05-06 00:23:16 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 322 bytes |
コンパイル時間 | 13,226 ms |
コンパイル使用メモリ | 229,248 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-28 01:54:05 |
合計ジャッジ時間 | 14,088 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
// No.2371 最大の試練それは起床package mainimport "fmt"const (htos = 3600mtos = 60)func main() {var h, m intfmt.Scan(&h, &m)x := htos*h + mtos*m + 30if x < (7*htos + 30*mtos) {fmt.Println("Yes")} else if x > (8*htos + 30*mtos) {fmt.Println("No")} else {fmt.Println("Late")}}