結果

問題 No.643 Two Operations No.2
ユーザー 37zigen
提出日時 2018-04-19 20:47:20
言語 Fortran
(gFortran 14.2.0)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 04:52:55
合計ジャッジ時間 795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
    implicit none
    integer::n,m
    read(*,*)n,m
    if((m==0.and.n==1).or.(m==0.and.n==2))then
        print*,"Impossible"
    else
        print*,"Possible"
    end if
end program
0