結果
| 問題 | No.1591 Two Digits |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-07 17:41:57 |
| 言語 | Go (1.26.1) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 166 bytes |
| 記録 | |
| コンパイル時間 | 10,369 ms |
| コンパイル使用メモリ | 292,368 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-17 04:31:13 |
| 合計ジャッジ時間 | 11,321 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
// No.1591 Two Digits
package main
import "fmt"
func main() {
var n string
fmt.Scan(&n)
if len(n) == 2 {
fmt.Println("Yes")
} else {
fmt.Println("No")
}
}