結果
| 問題 | 
                            No.1422 Social Distance in Train
                             | 
                    
| コンテスト | |
| ユーザー | 
                             c-yan
                         | 
                    
| 提出日時 | 2021-03-12 21:30:51 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 206 bytes | 
| コンパイル時間 | 139 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 10,624 KB | 
| 最終ジャッジ日時 | 2024-10-14 11:38:37 | 
| 合計ジャッジ時間 | 1,073 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 2 WA * 10 | 
ソースコード
N = int(input())
if N  == 1:
    print(1)
elif N == 2:
    print(2)
elif N == 3:
    print(1)
elif N == 4:
    print(2)
elif N == 5:
    print(1)
elif N % 2 == 0:
    print(2)
elif N % 2 == 1:
    print()
            
            
            
        
            
c-yan