結果

問題 No.532 Possible or Impossible
ユーザー 37zigen
提出日時 2018-04-19 20:46:25
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 1,292 ms
コンパイル使用メモリ 29,172 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 04:52:53
合計ジャッジ時間 2,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

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