結果
| 問題 |
No.1591 Two Digits
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-07-20 02:38:59 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 117 bytes |
| コンパイル時間 | 88 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-07-17 13:40:00 |
| 合計ジャッジ時間 | 1,395 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 17 |
ソースコード
N = int(input())
N = abs(N)
N_str = str(N)
N_len = len(N_str)
if N_len == 2:
print("YES")
else:
print("NO")