結果
問題 | No.1587 012 Matrix |
ユーザー |
![]() |
提出日時 | 2021-07-08 22:30:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 216 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 82,476 KB |
実行使用メモリ | 54,032 KB |
最終ジャッジ日時 | 2024-07-01 12:49:28 |
合計ジャッジ時間 | 4,734 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | WA * 22 |
ソースコード
""" 2N種類必要 最小で0 最大で2N なので、2N+1種類の数字が作れる """ import sys from sys import stdin N = int(input()) if N == 2: print ("01") print ("22") else: print ("No")