結果

問題 No.1591 Two Digits
ユーザー Shizuku
提出日時 2023-02-14 02:33:12
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 201 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 29,952 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-16 14:28:18
合計ジャッジ時間 974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
    use iso_fortran_env
    implicit none
    integer(int32)::N
    read*,N
    if(10<=N.and.N<100)then
        print"(A)","Yes"
    else
        print"(A)","No"
    endif
end program main
0