結果

問題 No.969 じゃんけん
ユーザー jj1gujjj1guj
提出日時 2020-06-05 18:04:24
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-09 14:42:53
合計ジャッジ時間 1,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program y969
    implicit none
    integer(8)::X
    read*,X
    if(mod(X,3)==0)print*,"Yes"
    if(mod(X,3)/=0)print*,"No"
end program y969
0