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