結果
問題 |
No.1422 Social Distance in Train
|
ユーザー |
|
提出日時 | 2021-08-28 01:44:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 137 bytes |
コンパイル時間 | 355 ms |
コンパイル使用メモリ | 82,640 KB |
実行使用メモリ | 54,308 KB |
最終ジャッジ日時 | 2024-11-21 09:07:29 |
合計ジャッジ時間 | 1,902 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 6 WA * 6 |
ソースコード
#!/usr/bin/env python3 import sys def main(): N = int(input()) print(1 if N % 2 else 2) if __name__ == '__main__': main()